Compare commits

..

No commits in common. "8209790c8d02e41e5687ae70615577b1109a68b5" and "ebfcf0b57337d6144faf2090d6462561b37d6830" have entirely different histories.

2 changed files with 0 additions and 22 deletions

View File

@ -1,7 +0,0 @@
root = true
[**]
indent_style = tab
tab_width = 4
charset = utf-8
end_of_line = lf

View File

@ -173,21 +173,6 @@
// Extending builtin types
//
// Mixing builtin types
//
// In general this is impossible in JavaScript due to the lack of any
// mechanism of horizontal name resolution in the inheritance chain like
// multiple inheritance (hence why we call it a chain and not a tree).
//
// So there is no way, for example, to make something both an array and
// a function at the same time.
//
// XXX Reflect.construct(Function, args, newConstructor)
// mainly usefull if the resulting instance has to be of a builtin
// type like a function (callable) or an array...