Chromium Code Reviews| Index: runtime/lib/errors_patch.dart |
| =================================================================== |
| --- runtime/lib/errors_patch.dart (revision 29396) |
| +++ runtime/lib/errors_patch.dart (working copy) |
| @@ -110,6 +110,11 @@ |
| final String _msg; |
| } |
| +patch class CyclicInitializationError { |
| + static _throwNew(String variableName) { |
| + throw new CyclicInitializationError(variableName); |
| + } |
| +} |
| patch class AbstractClassInstantiationError { |
| AbstractClassInstantiationError._create( |