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

Side by Side Diff: lib/runtime/dart/web_gl.js

Issue 1887233005: Fix all dart:html strong mode errors except for spurious FINAL_NOT_INITIALIZED_CONSTRUCTOR warnings. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 8 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
OLDNEW
1 dart_library.library('dart/web_gl', null, /* Imports */[ 1 dart_library.library('dart/web_gl', null, /* Imports */[
2 'dart/_runtime', 2 'dart/_runtime',
3 'dart/core', 3 'dart/core',
4 'dart/html_common', 4 'dart/html_common',
5 'dart/html', 5 'dart/html',
6 'dart/_interceptors', 6 'dart/_interceptors',
7 'dart/typed_data', 7 'dart/typed_data',
8 'dart/_metadata', 8 'dart/_metadata',
9 'dart/_js_helper' 9 'dart/_js_helper'
10 ], /* Lazy imports */[ 10 ], /* Lazy imports */[
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 [dartx.getAttachedShaders](program) { 380 [dartx.getAttachedShaders](program) {
381 return this.getAttachedShaders(program); 381 return this.getAttachedShaders(program);
382 } 382 }
383 [dartx.getAttribLocation](program, name) { 383 [dartx.getAttribLocation](program, name) {
384 return this.getAttribLocation(program, name); 384 return this.getAttribLocation(program, name);
385 } 385 }
386 [dartx.getBufferParameter](target, pname) { 386 [dartx.getBufferParameter](target, pname) {
387 return this.getBufferParameter(target, pname); 387 return this.getBufferParameter(target, pname);
388 } 388 }
389 [dartx.getContextAttributes]() { 389 [dartx.getContextAttributes]() {
390 return html_common.convertNativeToDart_ContextAttributes(this[_getContextA ttributes_1]()); 390 return dart.as(html_common.convertNativeToDart_ContextAttributes(this[_get ContextAttributes_1]()), ContextAttributes);
391 } 391 }
392 [_getContextAttributes_1]() { 392 [_getContextAttributes_1]() {
393 return this.getContextAttributes(); 393 return this.getContextAttributes();
394 } 394 }
395 [dartx.getError]() { 395 [dartx.getError]() {
396 return this.getError(); 396 return this.getError();
397 } 397 }
398 [dartx.getExtension](name) { 398 [dartx.getExtension](name) {
399 return this.getExtension(name); 399 return this.getExtension(name);
400 } 400 }
(...skipping 1986 matching lines...) Expand 10 before | Expand all | Expand 10 after
2387 exports.OesTextureHalfFloatLinear = OesTextureHalfFloatLinear; 2387 exports.OesTextureHalfFloatLinear = OesTextureHalfFloatLinear;
2388 exports.OesVertexArrayObject = OesVertexArrayObject; 2388 exports.OesVertexArrayObject = OesVertexArrayObject;
2389 exports.Program = Program; 2389 exports.Program = Program;
2390 exports.Renderbuffer = Renderbuffer; 2390 exports.Renderbuffer = Renderbuffer;
2391 exports.Shader = Shader; 2391 exports.Shader = Shader;
2392 exports.ShaderPrecisionFormat = ShaderPrecisionFormat; 2392 exports.ShaderPrecisionFormat = ShaderPrecisionFormat;
2393 exports.Texture = Texture; 2393 exports.Texture = Texture;
2394 exports.UniformLocation = UniformLocation; 2394 exports.UniformLocation = UniformLocation;
2395 exports.VertexArrayObject = VertexArrayObject; 2395 exports.VertexArrayObject = VertexArrayObject;
2396 }); 2396 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698