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

Unified Diff: test/generated_sdk/lib/core/core.dart

Issue 1153003003: fixes #40, extension methods for primitive types (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 7 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
Index: test/generated_sdk/lib/core/core.dart
diff --git a/test/generated_sdk/lib/core/core.dart b/test/generated_sdk/lib/core/core.dart
index 71d53fc3d238e721c7c87f3f9262b942108a2ece..01253b3f11e6da499054093bcfb7a9dcdde0b994 100644
--- a/test/generated_sdk/lib/core/core.dart
+++ b/test/generated_sdk/lib/core/core.dart
@@ -203,18 +203,4 @@ part "symbol.dart";
part "type.dart";
part "uri.dart";
-String _symbolToString(Symbol symbol) => _symbol_dev.Symbol.getName(symbol);
-_symbolMapToStringMap(Map<Symbol, dynamic> map) {
- if (map == null) return null;
- var result = new Map<String, dynamic>();
- map.forEach((Symbol key, value) {
- result[_symbolToString(key)] = value;
- });
- return result;
-}
-class SupportJsExtensionMethods {
- const SupportJsExtensionMethods();
-}
-class _ListConstructorSentinel {
- const _ListConstructorSentinel();
-}
+String _symbolToString(Symbol symbol) => _symbol_dev.Symbol.getName(symbol);

Powered by Google App Engine
This is Rietveld 408576698