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

Side by Side Diff: sdk/lib/web_gl/dartium/web_gl_dartium.dart

Issue 1583773003: Support JS$ prefix for dart and fix bug where _operator_getter and the [] operator were used incons… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: remove tests to put with matching dart2js tests Created 4 years, 11 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 | « sdk/lib/web_audio/dartium/web_audio_dartium.dart ('k') | tests/html/html.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /** 1 /**
2 * 3D programming in the browser. 2 * 3D programming in the browser.
3 */ 3 */
4 library dart.dom.web_gl; 4 library dart.dom.web_gl;
5 5
6 import 'dart:async'; 6 import 'dart:async';
7 import 'dart:collection'; 7 import 'dart:collection';
8 import 'dart:_internal'; 8 import 'dart:_internal';
9 import 'dart:html'; 9 import 'dart:html';
10 import 'dart:html_common'; 10 import 'dart:html_common';
(...skipping 806 matching lines...) Expand 10 before | Expand all | Expand 10 after
817 class ContextEvent extends Event { 817 class ContextEvent extends Event {
818 // To suppress missing implicit constructor warnings. 818 // To suppress missing implicit constructor warnings.
819 factory ContextEvent._() { throw new UnsupportedError("Not supported"); } 819 factory ContextEvent._() { throw new UnsupportedError("Not supported"); }
820 820
821 821
822 @Deprecated("Internal Use Only") 822 @Deprecated("Internal Use Only")
823 static ContextEvent internalCreateContextEvent() { 823 static ContextEvent internalCreateContextEvent() {
824 return new ContextEvent._internalWrap(); 824 return new ContextEvent._internalWrap();
825 } 825 }
826 826
827 factory ContextEvent._internalWrap() { 827 external factory ContextEvent._internalWrap();
828 return new ContextEvent.internal_();
829 }
830 828
831 @Deprecated("Internal Use Only") 829 @Deprecated("Internal Use Only")
832 ContextEvent.internal_() : super.internal_(); 830 ContextEvent.internal_() : super.internal_();
833 831
834 832
835 @DomName('WebGLContextEvent.statusMessage') 833 @DomName('WebGLContextEvent.statusMessage')
836 @DocsEditable() 834 @DocsEditable()
837 String get statusMessage => _blink.BlinkWebGLContextEvent.instance.statusMessa ge_Getter_(unwrap_jso(this)); 835 String get statusMessage => _blink.BlinkWebGLContextEvent.instance.statusMessa ge_Getter_(unwrap_jso(this));
838 836
839 } 837 }
(...skipping 2906 matching lines...) Expand 10 before | Expand all | Expand 10 after
3746 3744
3747 3745
3748 @DocsEditable() 3746 @DocsEditable()
3749 @DomName('WebGLRenderingContextBase') 3747 @DomName('WebGLRenderingContextBase')
3750 @Experimental() // untriaged 3748 @Experimental() // untriaged
3751 class _WebGLRenderingContextBase extends DartHtmlDomObject { 3749 class _WebGLRenderingContextBase extends DartHtmlDomObject {
3752 // To suppress missing implicit constructor warnings. 3750 // To suppress missing implicit constructor warnings.
3753 factory _WebGLRenderingContextBase._() { throw new UnsupportedError("Not suppo rted"); } 3751 factory _WebGLRenderingContextBase._() { throw new UnsupportedError("Not suppo rted"); }
3754 3752
3755 } 3753 }
OLDNEW
« no previous file with comments | « sdk/lib/web_audio/dartium/web_audio_dartium.dart ('k') | tests/html/html.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698