summaryrefslogtreecommitdiffstats
path: root/lib/handlebars/compiler/code-gen.js
Commit message (Collapse)AuthorAgeFilesLines
* Update to latest eslintkpdecker2015-09-011-1/+1
|
* Implement block decoratorskpdecker2015-08-221-0/+3
| | | | These allow for a given block to be wrapped in helper methods or metadata and allow for more control over the current container and method before the code is run.
* Enforce 100% code coveragekpdecker2015-08-031-6/+7
|
* Update for let and optional parameterskpdecker2015-04-201-17/+15
|
* Add full support for es6kpdecker2015-04-161-4/+5
| | | | | | | | Converts the tool chain to use babel, eslint, and webpack vs. the previous proprietary solutions. Additionally begins enforcing additional linting concerns as well as updates the code to reflect these rules. Fixes #855 Fixes #993
* Ignore branches tested without coverage monitoringkpdecker2015-04-071-1/+2
|
* Avoid source-map import under AMDkpdecker2015-04-071-2/+12
| | | Fixes #989
* Treat partial exec in a manner closer to helperskpdecker2014-11-271-1/+4
| | | This helps unify the code handling and will also be needed to support string/id tracking on partials.
* Update literal ast nodes for new speckpdecker2014-11-261-1/+1
|
* Update AST location info to match SpiderMonkeykpdecker2014-11-261-4/+4
| | | Part of #889
* Generate source mapskpdecker2014-11-081-0/+151
Allow the precompiler to generate source maps when the srcFile parameter is passed. This refactors large chunks of the code generation pipeline, allowing metadata to be associated with code chunks as well as breaking out much of the code generation logic into a separate helper.