Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 name: dev_compiler | 1 name: dev_compiler |
| 2 version: 0.1.7 | 2 version: 0.1.7 |
| 3 description: > | 3 description: > |
| 4 Experimental Dart to JavaScript compiler designed to create idiomatic, | 4 Experimental Dart to JavaScript compiler designed to create idiomatic, |
| 5 readable JavaScript output. | 5 readable JavaScript output. |
| 6 author: Dart Dev Compiler team <dev-compiler@dartlang.org> | 6 author: Dart Dev Compiler team <dev-compiler@dartlang.org> |
| 7 homepage: https://github.com/dart-lang/dev_compiler | 7 homepage: https://github.com/dart-lang/dev_compiler |
| 8 dependencies: | 8 dependencies: |
| 9 analyzer: ^0.26.0-alpha.0 | 9 analyzer: ^0.26.0-alpha.0 |
| 10 args: ^0.13.0 | 10 args: ^0.13.0 |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 28 environment: | 28 environment: |
| 29 sdk: ">=1.12.0-dev.1.1 <2.0.0" | 29 sdk: ">=1.12.0-dev.1.1 <2.0.0" |
| 30 executables: | 30 executables: |
| 31 # Similar to "analyzer.dart" and its command line "dartanalyzer" we use | 31 # Similar to "analyzer.dart" and its command line "dartanalyzer" we use |
| 32 # "dartdevc". | 32 # "dartdevc". |
| 33 dartdevc: dartdevc | 33 dartdevc: dartdevc |
| 34 dev_compiler: | 34 dev_compiler: |
| 35 # Similar to dartdevc, but runs the (single) entry point with iojs (requires | 35 # Similar to dartdevc, but runs the (single) entry point with iojs (requires |
| 36 # a very recent iojs next-nightly version). | 36 # a very recent iojs next-nightly version). |
| 37 dartdevrun: devrun | 37 dartdevrun: devrun |
| 38 dependency_overrides: | |
| 39 analyzer: | |
| 40 path: ../dart/sdk/pkg/analyzer/ | |
|
vsm
2015/09/18 22:57:45
This needs to be replaced with a new analyzer vers
| |
| OLD | NEW |