| Index: lib/compiler/implementation/lib/js_helper.dart
|
| diff --git a/lib/compiler/implementation/lib/js_helper.dart b/lib/compiler/implementation/lib/js_helper.dart
|
| index 7170d2c1b158cbb4c4aacc801d790602808de2d3..62190cda045c9fcb984a7f3f34cba910a0d3d316 100644
|
| --- a/lib/compiler/implementation/lib/js_helper.dart
|
| +++ b/lib/compiler/implementation/lib/js_helper.dart
|
| @@ -849,6 +849,10 @@ throwRuntimeError(message) {
|
| throw new RuntimeError(message);
|
| }
|
|
|
| +throwAbstractClassInstantiationError(className) {
|
| + throw new AbstractClassInstantiationError(className);
|
| +}
|
| +
|
| /**
|
| * Called from catch blocks in generated code to extract the Dart
|
| * exception from the thrown value. The thrown value may have been
|
|
|