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

Unified Diff: test/codegen/expect/_internal/_internal.js

Issue 955513008: cleans up sdk patching so we no longer have unresolved names (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 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: test/codegen/expect/_internal/_internal.js
diff --git a/test/codegen/expect/_internal/_internal.js b/test/codegen/expect/_internal/_internal.js
index 3115d752ae895726fe471cd08fce5d550b91ed94..19e9c026781d008862f6d0efd7d00f8fa41f4fc3 100644
--- a/test/codegen/expect/_internal/_internal.js
+++ b/test/codegen/expect/_internal/_internal.js
@@ -1446,7 +1446,7 @@ var _internal;
}
// Function makeListFixedLength: (List<dynamic>) → List
function makeListFixedLength(growableList) {
- dart.dinvoke(/* Unimplemented unknown name */JSArray, 'markFixedList', growableList);
+ _interceptors.JSArray.markFixedList(growableList);
return growableList;
}
class Lists extends dart.Object {
@@ -1518,7 +1518,7 @@ var _internal;
_internal.printToZone = null;
// Function printToConsole: (String) → void
function printToConsole(line) {
- dart.dinvokef(/* Unimplemented unknown name */printString, `${line}`);
+ _js_primitives.printString(`${line}`);
}
class Sort extends dart.Object {
static sort(a, compare) {
« no previous file with comments | « test/codegen/expect/_interceptors/_interceptors.js ('k') | test/codegen/expect/_isolate_helper/_isolate_helper.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698