Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: tool/input_sdk/private/js_helper.dart

Issue 1424133007: Compile package:js.{rest, spread} helpers (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Use freshly released version 0.6.0-beta.6 of package:js ran formatter Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/codegen/varargs.dart ('k') | tool/sdk_expected_errors.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/input_sdk/private/js_helper.dart
diff --git a/tool/input_sdk/private/js_helper.dart b/tool/input_sdk/private/js_helper.dart
index 34e08ea40efd4d2b6294c17ef7f052a919e404bf..a7a0d60627b77f15f8fe03b3e06d86b015b12bd8 100644
--- a/tool/input_sdk/private/js_helper.dart
+++ b/tool/input_sdk/private/js_helper.dart
@@ -24,7 +24,6 @@ class _Patch {
const _Patch patch = const _Patch();
-
/// Marks the internal map in dart2js, so that internal libraries can is-check
// them.
abstract class InternalMap {
@@ -176,7 +175,7 @@ class Primitives {
/// In minified mode, uses the unminified names if available.
static String objectToString(Object object) {
// String name = objectTypeName(object);
- String name = JS('String', 'dart.typeName(dart.realRuntimeType(#))', object);
+ String name = JS('String', 'dart.typeName(dart.realRuntimeType(#))', object);
return "Instance of '$name'";
}
« no previous file with comments | « test/codegen/varargs.dart ('k') | tool/sdk_expected_errors.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698