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

Unified Diff: pkg/compiler/lib/src/js_backend/codegen/glue.dart

Issue 1366673003: dart2js: fix for https://github.com/dart-lang/sdk/issues/24412 (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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/compiler/lib/src/js_backend/codegen/glue.dart
diff --git a/pkg/compiler/lib/src/js_backend/codegen/glue.dart b/pkg/compiler/lib/src/js_backend/codegen/glue.dart
index 37dd0ae333038226b49027cb39d9ab9ec0e54bbc..5718d4781e68b48aa0c0a80bd1eb6d40ca710f7e 100644
--- a/pkg/compiler/lib/src/js_backend/codegen/glue.dart
+++ b/pkg/compiler/lib/src/js_backend/codegen/glue.dart
@@ -261,6 +261,11 @@ class Glue {
ClassElement get jsExtendableArrayClass => _backend.jsExtendableArrayClass;
ClassElement get jsMutableArrayClass => _backend.jsMutableArrayClass;
+ ClassElement get jsPlainJavaScriptObjectClass =>
+ _backend.jsPlainJavaScriptObjectClass;
+ ClassElement get jsUnknownJavaScriptObjectClass =>
+ _backend.jsUnknownJavaScriptObjectClass;
+
bool isStringClass(ClassElement classElement) =>
classElement == _backend.jsStringClass ||
classElement == _compiler.stringClass;
@@ -268,4 +273,6 @@ class Glue {
bool isBoolClass(ClassElement classElement) =>
classElement == _backend.jsBoolClass ||
classElement == _compiler.boolClass;
+
+
asgerf 2015/09/23 19:26:40 whitespace
sra1 2015/09/24 00:24:45 Done.
}

Powered by Google App Engine
This is Rietveld 408576698