| Index: lib/compiler/implementation/elements/elements.dart
|
| diff --git a/lib/compiler/implementation/elements/elements.dart b/lib/compiler/implementation/elements/elements.dart
|
| index a9c34cbc8b6d9097bdb7982aad62141ac5e9f22d..994ff8a7dbd1be63ce336f92d1d6dc567378efd4 100644
|
| --- a/lib/compiler/implementation/elements/elements.dart
|
| +++ b/lib/compiler/implementation/elements/elements.dart
|
| @@ -181,7 +181,7 @@ class Element implements Hashable {
|
| toString() => '$kind(${name.slowToString()})';
|
|
|
| bool _isNative = false;
|
| - void setNative() => _isNative = true;
|
| + void setNative() { _isNative = true; }
|
| bool isNative() => _isNative;
|
| }
|
|
|
|
|