Skip to content

Commit

Permalink
feat(jit): move/extend attribute value parsing to the expression pars…
Browse files Browse the repository at this point in the history
…er (#98)

* refactor(parser): extract template/object/array literal parsing into functions

* chore(typescript): fix tsdk and tslint paths

* refactor(jit): move interpolation parsing to the expression parser

* fix(expression-parser): use a separate lookup for non-interpolation attribute values

refactor(expression-parser): make bindingType mandatory and pass the correct types to the parser everywhere

* refactor(template-compiler): make compiler flow a bit more logical

* fix(template-compiler): use the target name instead of full name + fix tests
  • Loading branch information
fkleuver authored and EisenbergEffect committed Aug 26, 2018
1 parent 1ddff95 commit 53864a1
Show file tree
Hide file tree
Showing 10 changed files with 519 additions and 466 deletions.
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Place your settings in this file to overwrite default and user settings.
{
"typescript.tsdk": "./node_modules/typescript/lib",
"tslint.nodePath": "./node_modules/tslint/bin/tslint",
"typescript.tsdk": "node_modules/typescript/lib",
"tslint.nodePath": "node_modules/tslint/lib",
"html.suggest.angular1": false,
"html.suggest.ionic": false,
"html.format.endWithNewline": true,
Expand Down
Loading

0 comments on commit 53864a1

Please sign in to comment.