OLD | NEW |
---|---|
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 part of dart2js; | 5 part of dart2js; |
6 | 6 |
7 /** | 7 /** |
8 * If true, print a warning for each method that was resolved, but not | 8 * If true, print a warning for each method that was resolved, but not |
9 * compiled. | 9 * compiled. |
10 */ | 10 */ |
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
486 | 486 |
487 // TODO(karlklose,floitsch): move this to the javascript backend. | 487 // TODO(karlklose,floitsch): move this to the javascript backend. |
488 /** Enable the 'JS' helper for a library if needed. */ | 488 /** Enable the 'JS' helper for a library if needed. */ |
489 void maybeEnableJSHelper(LibraryElement library) { | 489 void maybeEnableJSHelper(LibraryElement library) { |
490 String libraryName = library.uri.toString(); | 490 String libraryName = library.uri.toString(); |
491 if (library.entryCompilationUnit.script.name.contains( | 491 if (library.entryCompilationUnit.script.name.contains( |
492 'dart/tests/compiler/dart2js_native') | 492 'dart/tests/compiler/dart2js_native') |
493 || libraryName == 'dart:mirrors' | 493 || libraryName == 'dart:mirrors' |
494 || libraryName == 'dart:isolate' | 494 || libraryName == 'dart:isolate' |
495 || libraryName == 'dart:math' | 495 || libraryName == 'dart:math' |
496 || libraryName == 'dart:audio' | |
Emily Fortuna
2012/11/20 22:38:17
should we call this htmlaudio instead? the svg lib
blois
2012/11/20 23:46:11
Pretty much all of the APIs are from the 'Web Audi
| |
496 || libraryName == 'dart:html' | 497 || libraryName == 'dart:html' |
497 || libraryName == 'dart:svg') { | 498 || libraryName == 'dart:svg') { |
498 if (libraryName == 'dart:html' || libraryName == 'dart:mirrors') { | 499 if (libraryName == 'dart:html' || libraryName == 'dart:mirrors') { |
499 // dart:html needs access to convertDartClosureToJS. | 500 // dart:html needs access to convertDartClosureToJS. |
500 // dart:mirrors needs access to the Primitives class. | 501 // dart:mirrors needs access to the Primitives class. |
501 importHelperLibrary(library); | 502 importHelperLibrary(library); |
502 } | 503 } |
503 library.addToScope(findHelper(const SourceString('JS')), this); | 504 library.addToScope(findHelper(const SourceString('JS')), this); |
504 Element jsIndexingBehaviorInterface = | 505 Element jsIndexingBehaviorInterface = |
505 findHelper(const SourceString('JavaScriptIndexingBehavior')); | 506 findHelper(const SourceString('JavaScriptIndexingBehavior')); |
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
940 // TODO(johnniwinther): Use [spannable] and [message] to provide better | 941 // TODO(johnniwinther): Use [spannable] and [message] to provide better |
941 // information on assertion errors. | 942 // information on assertion errors. |
942 if (condition is Function){ | 943 if (condition is Function){ |
943 condition = condition(); | 944 condition = condition(); |
944 } | 945 } |
945 if (spannable == null || !condition) { | 946 if (spannable == null || !condition) { |
946 throw new SpannableAssertionFailure(spannable, message); | 947 throw new SpannableAssertionFailure(spannable, message); |
947 } | 948 } |
948 return true; | 949 return true; |
949 } | 950 } |
OLD | NEW |