| Index: lib/compiler/implementation/emitter.dart
|
| diff --git a/lib/compiler/implementation/emitter.dart b/lib/compiler/implementation/emitter.dart
|
| index 728f07805d7a1d670bfe7a1179672fea837f23ea..3ad4365e24ebb69c85afca92e0d8291fc9c9f5df 100644
|
| --- a/lib/compiler/implementation/emitter.dart
|
| +++ b/lib/compiler/implementation/emitter.dart
|
| @@ -324,7 +324,7 @@ function(collectedClasses) {
|
| } else {
|
| Constant value = handler.initialVariableValues[element];
|
| if (value == null) {
|
| - argumentsBuffer[count] = '(void 0)';
|
| + argumentsBuffer[count] = NullConstant.JsNull;
|
| } else {
|
| if (!value.isNull()) {
|
| // If the value is the null constant, we should not pass it
|
|
|