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

Side by Side Diff: pkg/compiler/lib/src/native/native.dart

Issue 1945183002: Fix missing functionality with --allow-native-extensions (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 7 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 | « no previous file | tests/compiler/dart2js/analyze_only_test.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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library native; 5 library native;
6 6
7 import '../compiler.dart' show Compiler; 7 import '../compiler.dart' show Compiler;
8 import '../elements/elements.dart'; 8 import '../elements/elements.dart';
9 9
10 export 'behavior.dart'; 10 export 'behavior.dart';
(...skipping 20 matching lines...) Expand all
31 String scriptName = library.entryCompilationUnit.script.name; 31 String scriptName = library.entryCompilationUnit.script.name;
32 return scriptName.contains('sdk/tests/compiler/dart2js_native') || 32 return scriptName.contains('sdk/tests/compiler/dart2js_native') ||
33 scriptName.contains('sdk/tests/compiler/dart2js_extra'); 33 scriptName.contains('sdk/tests/compiler/dart2js_extra');
34 } 34 }
35 bool allowedDartLibary() { 35 bool allowedDartLibary() {
36 Uri uri = library.canonicalUri; 36 Uri uri = library.canonicalUri;
37 if (uri.scheme != 'dart') return false; 37 if (uri.scheme != 'dart') return false;
38 return _allowedDartSchemePaths.contains(uri.path); 38 return _allowedDartSchemePaths.contains(uri.path);
39 } 39 }
40 40
41 return allowedTestLibrary() || allowedDartLibary(); 41 return allowedTestLibrary() ||
42 allowedDartLibary() ||
43 compiler.options.allowNativeExtensions;
42 } 44 }
OLDNEW
« no previous file with comments | « no previous file | tests/compiler/dart2js/analyze_only_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698