| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012, the Dart project authors. | 2 * Copyright (c) 2012, the Dart project authors. |
| 3 * | 3 * |
| 4 * Licensed under the Eclipse Public License v1.0 (the "License"); you may not u
se this file except | 4 * Licensed under the Eclipse Public License v1.0 (the "License"); you may not u
se this file except |
| 5 * in compliance with the License. You may obtain a copy of the License at | 5 * in compliance with the License. You may obtain a copy of the License at |
| 6 * | 6 * |
| 7 * http://www.eclipse.org/legal/epl-v10.html | 7 * http://www.eclipse.org/legal/epl-v10.html |
| 8 * | 8 * |
| 9 * Unless required by applicable law or agreed to in writing, software distribut
ed under the License | 9 * Unless required by applicable law or agreed to in writing, software distribut
ed under the License |
| 10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY K
IND, either express | 10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY K
IND, either express |
| 11 * or implied. See the License for the specific language governing permissions a
nd limitations under | 11 * or implied. See the License for the specific language governing permissions a
nd limitations under |
| 12 * the License. | 12 * the License. |
| 13 */ | 13 */ |
| 14 | 14 |
| 15 package com.google.dart.java2dart; | 15 package com.google.dart.java2dart; |
| 16 | 16 |
| 17 import com.google.common.collect.ImmutableMap; | 17 import com.google.common.collect.ImmutableMap; |
| 18 import com.google.common.collect.Lists; | 18 import com.google.common.collect.Lists; |
| 19 import com.google.common.collect.Maps; | 19 import com.google.common.collect.Maps; |
| 20 import com.google.common.collect.Sets; | 20 import com.google.common.collect.Sets; |
| 21 import com.google.common.io.Files; | 21 import com.google.common.io.Files; |
| 22 import com.google.dart.engine.ast.ArgumentList; |
| 22 import com.google.dart.engine.ast.AstNode; | 23 import com.google.dart.engine.ast.AstNode; |
| 23 import com.google.dart.engine.ast.ArgumentList; | |
| 24 import com.google.dart.engine.ast.Block; | 24 import com.google.dart.engine.ast.Block; |
| 25 import com.google.dart.engine.ast.BlockFunctionBody; | 25 import com.google.dart.engine.ast.BlockFunctionBody; |
| 26 import com.google.dart.engine.ast.ClassDeclaration; | 26 import com.google.dart.engine.ast.ClassDeclaration; |
| 27 import com.google.dart.engine.ast.ClassMember; | 27 import com.google.dart.engine.ast.ClassMember; |
| 28 import com.google.dart.engine.ast.CompilationUnit; | 28 import com.google.dart.engine.ast.CompilationUnit; |
| 29 import com.google.dart.engine.ast.CompilationUnitMember; | 29 import com.google.dart.engine.ast.CompilationUnitMember; |
| 30 import com.google.dart.engine.ast.ConstructorDeclaration; | 30 import com.google.dart.engine.ast.ConstructorDeclaration; |
| 31 import com.google.dart.engine.ast.Expression; | 31 import com.google.dart.engine.ast.Expression; |
| 32 import com.google.dart.engine.ast.FieldDeclaration; | 32 import com.google.dart.engine.ast.FieldDeclaration; |
| 33 import com.google.dart.engine.ast.Identifier; | 33 import com.google.dart.engine.ast.Identifier; |
| (...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1050 } | 1050 } |
| 1051 } | 1051 } |
| 1052 } | 1052 } |
| 1053 } | 1053 } |
| 1054 } | 1054 } |
| 1055 } | 1055 } |
| 1056 } | 1056 } |
| 1057 }); | 1057 }); |
| 1058 } | 1058 } |
| 1059 } | 1059 } |
| OLD | NEW |