Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(190)

Side by Side Diff: lib/custom_compiler_options.dart

Issue 2201803002: Mark native methods as external. (Closed) Base URL: git@github.com:dart-lang/rasta.git@dill
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « lib/custom_backend.dart ('k') | lib/kernel.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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";
OLDNEW
« no previous file with comments | « lib/custom_backend.dart ('k') | lib/kernel.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698