Chromium Code Reviews| Index: sdk/lib/_internal/compiler/implementation/compiler.dart |
| =================================================================== |
| --- sdk/lib/_internal/compiler/implementation/compiler.dart (revision 19535) |
| +++ sdk/lib/_internal/compiler/implementation/compiler.dart (working copy) |
| @@ -151,6 +151,10 @@ |
| void registerSuperNoSuchMethod() {} |
| void registerConstantMap() {} |
| void registerRuntimeType() {} |
| + |
| + bool isNullImplementation(ClassElement cls) { |
|
karlklose
2013/03/06 08:05:20
Would it be better to call it the 'null class'?
ngeoffray
2013/03/06 08:08:25
No, the null class is the null class of the core l
|
| + return cls == compiler.nullClass; |
| + } |
| } |
| /** |