Index: tests/compiler/dart2js/minimal_resolution_test.dart |
diff --git a/tests/compiler/dart2js/minimal_resolution_test.dart b/tests/compiler/dart2js/minimal_resolution_test.dart |
index 8c3594828609aba6b0ee7f03b59551239ae5ce8e..4304afa24fc602c446817ae8039c24a2aaa4dc56 100644 |
--- a/tests/compiler/dart2js/minimal_resolution_test.dart |
+++ b/tests/compiler/dart2js/minimal_resolution_test.dart |
@@ -39,16 +39,17 @@ analyze(String code, |
memorySourceFiles: {'main.dart': code}, options: ['--analyze-only']); |
Expect.isTrue(result.isSuccess); |
Compiler compiler = result.compiler; |
- Expect.equals(proxyConstantComputed, |
+ Expect.equals( |
+ proxyConstantComputed, |
compiler.resolution.wasProxyConstantComputedTestingOnly, |
"Unexpected computation of proxy constant."); |
checkInstantiated( |
- compiler, compiler.commonElements.coreLibrary.find('_Proxy'), |
+ compiler, |
+ compiler.commonElements.coreLibrary.find('_Proxy'), |
proxyConstantComputed); |
- checkInstantiated( |
- compiler, compiler.commonElements.coreLibrary.find('Deprecated'), |
- deprecatedClass); |
+ checkInstantiated(compiler, |
+ compiler.commonElements.coreLibrary.find('Deprecated'), deprecatedClass); |
LibraryElement jsHelperLibrary = |
compiler.libraryLoader.lookupLibrary(BackendHelpers.DART_JS_HELPER); |