Sergey Berezhnoy
Sergey Berezhnoy
It will be great to have some performance comparison between OHM, Ometa/JS and custom parsers (such as Esprima).
We can have a marketing site with ability to bundle custom selection of blocks to dist.
It might be useful to have `update()`, `append()`, `prepend()` (and maybe `destruct()`) in an instance.
``` js BEM.decl({block: 'foo'}, {prop: 42}); BEM.decl({block: 'foo', modName: 'type', modVal: 'bar'}, {prop: 100500}); BEM.create(‘foo’).prop; // 100500 ```
Use ES2015
We can autogenerate Modules-Wrapper from ES2015 syntax. ### For simple cases (i.e. `dom.js`): ``` js modules.define('dom', ['jquery'], function(provide, $) { provide({ /* ... */ }); }); ``` ``` js import...
In some cases bind made in `onInit()` may be _unnecessary_ collected and make penalty to performance. Need to investigate realness of the issue and possibility to fix this with current...