Chromium Code Reviews| 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.
|
| } |