Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2019-07-09 18:21:15 +03:00
parent 37b8ce1257
commit f764914927

View File

@ -510,6 +510,15 @@ object.makeConstructor('BaseItem',
// //
// // for proper super calls... // // for proper super calls...
// this.__proto__.<method>.call(this, ..) // this.__proto__.<method>.call(this, ..)
//
// XXX care must be taken with attribute assignment through the proxy/view
// object, most of the state of the Browser is stored in mutable
// objects/props, some are intentionally overwritten by the proxy
// (like .items / .__items, ...) and some are not, but any attribute
// assignment through the proxy/view if not transferred to the .source
// will not reach it.
//
// Get the view/mixin source root... // Get the view/mixin source root...
// //