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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/compiler.dart

Issue 11316113: Creating a common library for all DOM types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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 | Annotate | Revision Log
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 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 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 library.addToScope(new ForeignElement( 483 library.addToScope(new ForeignElement(
484 const SourceString('DART_CLOSURE_TO_JS'), library), this); 484 const SourceString('DART_CLOSURE_TO_JS'), library), this);
485 } 485 }
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:html_common'
493 || libraryName == 'dart:mirrors' 494 || libraryName == 'dart:mirrors'
494 || libraryName == 'dart:isolate' 495 || libraryName == 'dart:isolate'
495 || libraryName == 'dart:math' 496 || libraryName == 'dart:math'
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'
500 || libraryName == 'dart:mirrors'
501 || libraryName == 'dart:html_common') {
sra1 2012/11/21 05:54:33 Coding style is to put || at the end of the previo
blois 2012/11/26 18:10:34 Done.
499 // dart:html needs access to convertDartClosureToJS. 502 // dart:html needs access to convertDartClosureToJS.
500 // dart:mirrors needs access to the Primitives class. 503 // dart:mirrors needs access to the Primitives class.
501 importHelperLibrary(library); 504 importHelperLibrary(library);
502 } 505 }
503 library.addToScope(findHelper(const SourceString('JS')), this); 506 library.addToScope(findHelper(const SourceString('JS')), this);
504 Element jsIndexingBehaviorInterface = 507 Element jsIndexingBehaviorInterface =
505 findHelper(const SourceString('JavaScriptIndexingBehavior')); 508 findHelper(const SourceString('JavaScriptIndexingBehavior'));
506 if (jsIndexingBehaviorInterface != null) { 509 if (jsIndexingBehaviorInterface != null) {
507 library.addToScope(jsIndexingBehaviorInterface, this); 510 library.addToScope(jsIndexingBehaviorInterface, this);
508 } 511 }
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
940 // TODO(johnniwinther): Use [spannable] and [message] to provide better 943 // TODO(johnniwinther): Use [spannable] and [message] to provide better
941 // information on assertion errors. 944 // information on assertion errors.
942 if (condition is Function){ 945 if (condition is Function){
943 condition = condition(); 946 condition = condition();
944 } 947 }
945 if (spannable == null || !condition) { 948 if (spannable == null || !condition) {
946 throw new SpannableAssertionFailure(spannable, message); 949 throw new SpannableAssertionFailure(spannable, message);
947 } 950 }
948 return true; 951 return true;
949 } 952 }
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/_internal/compiler/implementation/native_handler.dart » ('j') | sdk/lib/html/scripts/generator.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698