| 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 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 // TODO(karlklose,floitsch): move this to the javascript backend. | 485 // TODO(karlklose,floitsch): move this to the javascript backend. |
| 486 /** Enable the 'JS' helper for a library if needed. */ | 486 /** Enable the 'JS' helper for a library if needed. */ |
| 487 void maybeEnableJSHelper(LibraryElement library) { | 487 void maybeEnableJSHelper(LibraryElement library) { |
| 488 String libraryName = library.uri.toString(); | 488 String libraryName = library.uri.toString(); |
| 489 if (library.entryCompilationUnit.script.name.contains( | 489 if (library.entryCompilationUnit.script.name.contains( |
| 490 'dart/tests/compiler/dart2js_native') | 490 'dart/tests/compiler/dart2js_native') |
| 491 || libraryName == 'dart:mirrors' | 491 || libraryName == 'dart:mirrors' |
| 492 || libraryName == 'dart:isolate' | 492 || libraryName == 'dart:isolate' |
| 493 || libraryName == 'dart:math' | 493 || libraryName == 'dart:math' |
| 494 || libraryName == 'dart:html' | 494 || libraryName == 'dart:html' |
| 495 || libraryName == 'dart:svg') { | 495 || libraryName == 'dart:svg' |
| 496 || libraryName == 'dart:web_audio') { |
| 496 if (libraryName == 'dart:html' || libraryName == 'dart:mirrors') { | 497 if (libraryName == 'dart:html' || libraryName == 'dart:mirrors') { |
| 497 // dart:html needs access to convertDartClosureToJS. | 498 // dart:html needs access to convertDartClosureToJS. |
| 498 // dart:mirrors needs access to the Primitives class. | 499 // dart:mirrors needs access to the Primitives class. |
| 499 importHelperLibrary(library); | 500 importHelperLibrary(library); |
| 500 } | 501 } |
| 501 library.addToScope(findHelper(const SourceString('JS')), this); | 502 library.addToScope(findHelper(const SourceString('JS')), this); |
| 502 Element jsIndexingBehaviorInterface = | 503 Element jsIndexingBehaviorInterface = |
| 503 findHelper(const SourceString('JavaScriptIndexingBehavior')); | 504 findHelper(const SourceString('JavaScriptIndexingBehavior')); |
| 504 if (jsIndexingBehaviorInterface != null) { | 505 if (jsIndexingBehaviorInterface != null) { |
| 505 library.addToScope(jsIndexingBehaviorInterface, this); | 506 library.addToScope(jsIndexingBehaviorInterface, this); |
| (...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 938 // TODO(johnniwinther): Use [spannable] and [message] to provide better | 939 // TODO(johnniwinther): Use [spannable] and [message] to provide better |
| 939 // information on assertion errors. | 940 // information on assertion errors. |
| 940 if (condition is Function){ | 941 if (condition is Function){ |
| 941 condition = condition(); | 942 condition = condition(); |
| 942 } | 943 } |
| 943 if (spannable == null || !condition) { | 944 if (spannable == null || !condition) { |
| 944 throw new SpannableAssertionFailure(spannable, message); | 945 throw new SpannableAssertionFailure(spannable, message); |
| 945 } | 946 } |
| 946 return true; | 947 return true; |
| 947 } | 948 } |
| OLD | NEW |