Skip to content

Commit c2e4ca3

Browse files
git-svn-id: http://dart.googlecode.com/svn/trunk@26504 260f80e4-7a28-3924-810f-c04153c831b5
2 parents ca9096f + 6b20c0e commit c2e4ca3

File tree

366 files changed

+17794
-3584
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

366 files changed

+17794
-3584
lines changed

PRESUBMIT.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,5 @@ def CheckChangeOnCommit(input_api, output_api):
1414
input_api,
1515
output_api,
1616
json_url='http://dart-status.appspot.com/current?format=json')
17-
# TODO(ricow): reenable when status page is back in shape
18-
# results.extend(status_check)
17+
results.extend(status_check)
1918
return results

README.dart-sdk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The Dark SDK is a set of tools and libraries for the Dart programming language.
1+
The Dart SDK is a set of tools and libraries for the Dart programming language.
22

33
You can find information about Dart online at dartlang.org.
44

pkg/analyzer_experimental/bin/analyzer.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
library analyzer;
99

1010
import 'dart:async';
11+
import 'dart:convert';
1112
import 'dart:io';
1213

1314
import 'package:analyzer_experimental/src/generated/engine.dart';
@@ -80,7 +81,7 @@ class BatchRunner {
8081
// read line from stdin
8182
Stream cmdLine = stdin
8283
.transform(new StringDecoder())
83-
.transform(new LineTransformer());
84+
.transform(new LineSplitter());
8485
var subscription = cmdLine.listen((String line) {
8586
// may be finish
8687
if (line.isEmpty) {

0 commit comments

Comments
 (0)