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

Unified Diff: pkg/dev_compiler/tool/input_sdk/private/ddc_runtime/operations.dart

Issue 2698353003: unfork DDC's copy of most SDK libraries (Closed)
Patch Set: revert core_patch Created 3 years, 10 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: pkg/dev_compiler/tool/input_sdk/private/ddc_runtime/operations.dart
diff --git a/pkg/dev_compiler/tool/input_sdk/private/ddc_runtime/operations.dart b/pkg/dev_compiler/tool/input_sdk/private/ddc_runtime/operations.dart
index 6f4236c65a8f00db2fbe669bfa4c72b835f1a026..6910248fa3bcff8526195f899d2d468ef48b7517 100644
--- a/pkg/dev_compiler/tool/input_sdk/private/ddc_runtime/operations.dart
+++ b/pkg/dev_compiler/tool/input_sdk/private/ddc_runtime/operations.dart
@@ -208,7 +208,7 @@ _toDisplayName(name) => JS(
Symbol _dartSymbol(name) {
return (JS('bool', 'typeof # === "symbol"', name))
- ? JS('', '#(new #.es6(#, #))', const_, _internal.Symbol,
+ ? JS('', '#(new #(#, #))', const_, _internal.PrivateSymbol,
_toSymbolName(name), name)
: JS('', '#(#.new(#))', const_, Symbol, _toDisplayName(name));
}
« no previous file with comments | « pkg/dev_compiler/tool/input_sdk/patch/mirrors_patch.dart ('k') | pkg/dev_compiler/tool/input_sdk/private/isolate_helper.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698