| OLD | NEW |
| (Empty) | |
| 1 library java.engine; |
| 2 |
| 3 import "java_core.dart"; |
| 4 import "source.dart"; |
| 5 import "error.dart"; |
| 6 import "ast.dart"; |
| 7 import "element.dart"; |
| 8 |
| 9 class AnalysisException implements Exception { |
| 10 String toString() => "AnalysisException"; |
| 11 } |
| 12 |
| 13 class AnalysisEngine { |
| 14 static getInstance() { |
| 15 throw new UnsupportedOperationException(); |
| 16 } |
| 17 } |
| 18 |
| 19 class AnalysisContext { |
| 20 Element getElement(ElementLocation location) { |
| 21 throw new UnsupportedOperationException(); |
| 22 } |
| 23 } |
| 24 |
| 25 class AnalysisContextImpl extends AnalysisContext { |
| 26 getSourceFactory() { |
| 27 throw new UnsupportedOperationException(); |
| 28 } |
| 29 LibraryElement getLibraryElementOrNull(Source source) { |
| 30 return null; |
| 31 } |
| 32 LibraryElement getLibraryElement(Source source) { |
| 33 throw new UnsupportedOperationException(); |
| 34 } |
| 35 void recordLibraryElements(Map<Source, LibraryElement> elementMap) { |
| 36 throw new UnsupportedOperationException(); |
| 37 } |
| 38 getPublicNamespace(LibraryElement library) { |
| 39 throw new UnsupportedOperationException(); |
| 40 } |
| 41 CompilationUnit parse(Source source, AnalysisErrorListener errorListener) { |
| 42 throw new UnsupportedOperationException(); |
| 43 } |
| 44 } |
| 45 |
| 46 class StringUtilities { |
| 47 static List<String> EMPTY_ARRAY = new List.fixedLength(0); |
| 48 } |
| OLD | NEW |