refactor(dart): Run dartfmt 0.1.8

Format Dart code using dartfmt 0.1.8. Update pubspec to require
dart_style 0.1.8.
This commit is contained in:
Tim Blasi
2015-06-05 10:35:42 -07:00
parent 13d0815839
commit 851797aecb
4 changed files with 27 additions and 8 deletions
@@ -2,7 +2,17 @@ library examples.hello_world.index_common_dart.ng_deps.dart;
import 'hello.dart';
import 'package:angular2/angular2.dart'
show bootstrap, Component, Directive, View, NgElement, onChange, onDestroy, onInit, onCheck, onAllChangesDone;
show
bootstrap,
Component,
Directive,
View,
NgElement,
onChange,
onDestroy,
onInit,
onCheck,
onAllChangesDone;
var _visited = false;
void initReflector(reflector) {
@@ -12,8 +22,6 @@ void initReflector(reflector) {
..registerType(HelloCmp, {
'factory': () => new HelloCmp(),
'parameters': const [const []],
'annotations': const [
const Directive(exportAs: 'exportAsName')
]
'annotations': const [const Directive(exportAs: 'exportAsName')]
});
}