| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
| 4 | 4 |
| 5 library rasta.custom_compiler_options; | 5 library rasta.custom_compiler_options; |
| 6 | 6 |
| 7 import 'package:compiler/src/options.dart' show | 7 import 'package:compiler/src/options.dart' show |
| 8 CompilerOptions; | 8 CompilerOptions; |
| 9 | 9 |
| 10 import 'package:compiler/compiler.dart' show | 10 import 'package:compiler/compiler.dart' show |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 @override bool get hasBuildId => buildId != _UNDETERMINED_BUILD_ID; | 57 @override bool get hasBuildId => buildId != _UNDETERMINED_BUILD_ID; |
| 58 | 58 |
| 59 @override Uri get entryPoint => _unsupported; | 59 @override Uri get entryPoint => _unsupported; |
| 60 | 60 |
| 61 @override Uri get packageRoot => null; | 61 @override Uri get packageRoot => null; |
| 62 | 62 |
| 63 @override PackagesDiscoveryProvider get packagesDiscoveryProvider => null; | 63 @override PackagesDiscoveryProvider get packagesDiscoveryProvider => null; |
| 64 | 64 |
| 65 @override bool get allowMockCompilation => false; | 65 @override bool get allowMockCompilation => false; |
| 66 | 66 |
| 67 @override bool get allowNativeExtensions => true; | 67 @override bool get allowNativeExtensions => false; |
| 68 | 68 |
| 69 @override Uri get deferredMapUri => null; | 69 @override Uri get deferredMapUri => null; |
| 70 | 70 |
| 71 @override bool get disableInlining => true; | 71 @override bool get disableInlining => true; |
| 72 | 72 |
| 73 @override bool get disableTypeInference => true; | 73 @override bool get disableTypeInference => true; |
| 74 | 74 |
| 75 @override bool get dumpInfo => false; | 75 @override bool get dumpInfo => false; |
| 76 | 76 |
| 77 @override bool get enableAssertMessage => false; | 77 @override bool get enableAssertMessage => false; |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 packagesDiscoveryProvider: null, | 193 packagesDiscoveryProvider: null, |
| 194 environment: environment, | 194 environment: environment, |
| 195 options: arguments); | 195 options: arguments); |
| 196 | 196 |
| 197 return copy(options, base: base, | 197 return copy(options, base: base, |
| 198 platformConfigUri: targetSpecification.platformConfig); | 198 platformConfigUri: targetSpecification.platformConfig); |
| 199 } | 199 } |
| 200 } | 200 } |
| 201 | 201 |
| 202 get _unsupported => throw "not supported"; | 202 get _unsupported => throw "not supported"; |
| OLD | NEW |