Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…eding_edge trunk

git-svn-id: http://dart.googlecode.com/svn/trunk@26504 260f80e4-7a28-3924-810f-c04153c831b5
  • Loading branch information
[email protected] committed May 27, 2015
2 parents ca9096f + 6b20c0e commit c2e4ca3
Show file tree
Hide file tree
Showing 366 changed files with 17,794 additions and 3,584 deletions.
3 changes: 1 addition & 2 deletions PRESUBMIT.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,5 @@ def CheckChangeOnCommit(input_api, output_api):
input_api,
output_api,
json_url='http://dart-status.appspot.com/current?format=json')
# TODO(ricow): reenable when status page is back in shape
# results.extend(status_check)
results.extend(status_check)
return results
2 changes: 1 addition & 1 deletion README.dart-sdk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
The Dark SDK is a set of tools and libraries for the Dart programming language.
The Dart SDK is a set of tools and libraries for the Dart programming language.

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

Expand Down
3 changes: 2 additions & 1 deletion pkg/analyzer_experimental/bin/analyzer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
library analyzer;

import 'dart:async';
import 'dart:convert';
import 'dart:io';

import 'package:analyzer_experimental/src/generated/engine.dart';
Expand Down Expand Up @@ -80,7 +81,7 @@ class BatchRunner {
// read line from stdin
Stream cmdLine = stdin
.transform(new StringDecoder())
.transform(new LineTransformer());
.transform(new LineSplitter());
var subscription = cmdLine.listen((String line) {
// may be finish
if (line.isEmpty) {
Expand Down
Loading

0 comments on commit c2e4ca3

Please sign in to comment.