Files
sdk/pkg/dev_compiler/pubspec.yaml
T
Leaf Petersen eef8c94795 Skeleton for new checker and dart backend
This adds a skeleton new type checker which just reuses the existing checker for now, but will be filled in with the new type rules.

It also adds a dart backend code generator which currently just spits out the original dart code unchanged (except for (lack of) formatting) into the output directory.  By default it uses the dart_style formatter to format the output.  This sometimes hits issues, so there is an option to turn this off.

There are flags to control the various options added.

BUG=
R=jmesserly@google.com, vsm@google.com

Review URL: https://chromereviews.googleplex.com/128857013
2014-12-11 13:01:01 -08:00

27 lines
678 B
YAML

name: ddc
description: Dart dev checker / compiler
dependencies:
analyzer:
git:
url: http://github.com/dart-lang/analyzer-for-ddc.git
ref: master
args: ">=0.12.1 <0.13.0"
dart_style:
git:
url: http://github.com/dart-lang/dart_style.git
ref: master
logging: ">=0.9.2 <0.10.0"
source_span: ">=1.0.0 <2.0.0"
path: ">=1.3.0 <2.0.0"
dev_dependencies:
unittest: ">=0.11.0 <0.12.0"
dependency_overrides:
analyzer:
git:
url: http://github.com/dart-lang/analyzer-for-ddc.git
ref: master
executables:
# Similar to "analyzer.dart" and its command line "dartanalyzer", we use
# "dartdevc" and "devc.dart"
dartdevc: devc