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

Side by Side Diff: client/html/generated/src/wrapping/_HtmlWrappingImplementation.dart

Issue 8835006: New version of dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typos Created 9 years 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) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 class LevelDom { 7 class LevelDom {
8 static AnchorElement wrapAnchorElement(raw) { 8 static AnchorElement wrapAnchorElement(raw) {
9 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new AnchorElementWrappingImplementation._wrap(raw); 9 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new AnchorElementWrappingImplementation._wrap(raw);
10 } 10 }
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 return new Uint16ArrayWrappingImplementation._wrap(raw); 53 return new Uint16ArrayWrappingImplementation._wrap(raw);
54 case "Uint32Array": 54 case "Uint32Array":
55 return new Uint32ArrayWrappingImplementation._wrap(raw); 55 return new Uint32ArrayWrappingImplementation._wrap(raw);
56 case "Uint8Array": 56 case "Uint8Array":
57 return new Uint8ArrayWrappingImplementation._wrap(raw); 57 return new Uint8ArrayWrappingImplementation._wrap(raw);
58 default: 58 default:
59 throw new UnsupportedOperationException("Unknown type:" + raw.toString() ); 59 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
60 } 60 }
61 } 61 }
62 62
63 static AudioBuffer wrapAudioBuffer(raw) {
64 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new AudioBufferWrappingImplementation._wrap(raw);
65 }
66
67 // Skipped AudioBufferCallback
68 static AudioBufferSourceNode wrapAudioBufferSourceNode(raw) {
69 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new AudioBufferSourceNodeWrappingImplementation._wrap(raw);
70 }
71
72 static AudioChannelMerger wrapAudioChannelMerger(raw) {
73 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new AudioChannelMergerWrappingImplementation._wrap(raw);
74 }
75
76 static AudioChannelSplitter wrapAudioChannelSplitter(raw) {
77 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new AudioChannelSplitterWrappingImplementation._wrap(raw);
78 }
79
80 static AudioContext wrapAudioContext(raw) {
81 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new AudioContextWrappingImplementation._wrap(raw);
82 }
83
84 static AudioDestinationNode wrapAudioDestinationNode(raw) {
85 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new AudioDestinationNodeWrappingImplementation._wrap(raw);
86 }
87
63 static AudioElement wrapAudioElement(raw) { 88 static AudioElement wrapAudioElement(raw) {
64 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new AudioElementWrappingImplementation._wrap(raw); 89 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new AudioElementWrappingImplementation._wrap(raw);
65 } 90 }
66 91
92 static AudioGain wrapAudioGain(raw) {
93 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new AudioGainWrappingImplementation._wrap(raw);
94 }
95
96 static AudioGainNode wrapAudioGainNode(raw) {
97 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new AudioGainNodeWrappingImplementation._wrap(raw);
98 }
99
100 static AudioListener wrapAudioListener(raw) {
101 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new AudioListenerWrappingImplementation._wrap(raw);
102 }
103
104 static AudioNode wrapAudioNode(raw) {
105 if (raw === null) { return null; }
106 if (raw.dartObjectLocalStorage !== null) {
107 return raw.dartObjectLocalStorage;
108 }
109 switch (raw.typeName) {
110 case "AudioBufferSourceNode":
111 return new AudioBufferSourceNodeWrappingImplementation._wrap(raw);
112 case "AudioChannelMerger":
113 return new AudioChannelMergerWrappingImplementation._wrap(raw);
114 case "AudioChannelSplitter":
115 return new AudioChannelSplitterWrappingImplementation._wrap(raw);
116 case "AudioDestinationNode":
117 return new AudioDestinationNodeWrappingImplementation._wrap(raw);
118 case "AudioGainNode":
119 return new AudioGainNodeWrappingImplementation._wrap(raw);
120 case "AudioNode":
121 return new AudioNodeWrappingImplementation._wrap(raw);
122 case "AudioPannerNode":
123 return new AudioPannerNodeWrappingImplementation._wrap(raw);
124 case "AudioSourceNode":
125 return new AudioSourceNodeWrappingImplementation._wrap(raw);
126 case "BiquadFilterNode":
127 return new BiquadFilterNodeWrappingImplementation._wrap(raw);
128 case "ConvolverNode":
129 return new ConvolverNodeWrappingImplementation._wrap(raw);
130 case "DelayNode":
131 return new DelayNodeWrappingImplementation._wrap(raw);
132 case "DynamicsCompressorNode":
133 return new DynamicsCompressorNodeWrappingImplementation._wrap(raw);
134 case "HighPass2FilterNode":
135 return new HighPass2FilterNodeWrappingImplementation._wrap(raw);
136 case "JavaScriptAudioNode":
137 return new JavaScriptAudioNodeWrappingImplementation._wrap(raw);
138 case "LowPass2FilterNode":
139 return new LowPass2FilterNodeWrappingImplementation._wrap(raw);
140 case "MediaElementAudioSourceNode":
141 return new MediaElementAudioSourceNodeWrappingImplementation._wrap(raw);
142 case "RealtimeAnalyserNode":
143 return new RealtimeAnalyserNodeWrappingImplementation._wrap(raw);
144 case "WaveShaperNode":
145 return new WaveShaperNodeWrappingImplementation._wrap(raw);
146 default:
147 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
148 }
149 }
150
151 static AudioPannerNode wrapAudioPannerNode(raw) {
152 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new AudioPannerNodeWrappingImplementation._wrap(raw);
153 }
154
155 static AudioParam wrapAudioParam(raw) {
156 if (raw === null) { return null; }
157 if (raw.dartObjectLocalStorage !== null) {
158 return raw.dartObjectLocalStorage;
159 }
160 switch (raw.typeName) {
161 case "AudioGain":
162 return new AudioGainWrappingImplementation._wrap(raw);
163 case "AudioParam":
164 return new AudioParamWrappingImplementation._wrap(raw);
165 default:
166 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
167 }
168 }
169
170 static AudioProcessingEvent wrapAudioProcessingEvent(raw) {
171 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new AudioProcessingEventWrappingImplementation._wrap(raw);
172 }
173
174 static AudioSourceNode wrapAudioSourceNode(raw) {
175 if (raw === null) { return null; }
176 if (raw.dartObjectLocalStorage !== null) {
177 return raw.dartObjectLocalStorage;
178 }
179 switch (raw.typeName) {
180 case "AudioBufferSourceNode":
181 return new AudioBufferSourceNodeWrappingImplementation._wrap(raw);
182 case "AudioSourceNode":
183 return new AudioSourceNodeWrappingImplementation._wrap(raw);
184 case "MediaElementAudioSourceNode":
185 return new MediaElementAudioSourceNodeWrappingImplementation._wrap(raw);
186 default:
187 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
188 }
189 }
190
67 static BRElement wrapBRElement(raw) { 191 static BRElement wrapBRElement(raw) {
68 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new BRElementWrappingImplementation._wrap(raw); 192 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new BRElementWrappingImplementation._wrap(raw);
69 } 193 }
70 194
71 static BarInfo wrapBarInfo(raw) { 195 static BarInfo wrapBarInfo(raw) {
72 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new BarInfoWrappingImplementation._wrap(raw); 196 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new BarInfoWrappingImplementation._wrap(raw);
73 } 197 }
74 198
75 static BaseElement wrapBaseElement(raw) { 199 static BaseElement wrapBaseElement(raw) {
76 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new BaseElementWrappingImplementation._wrap(raw); 200 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new BaseElementWrappingImplementation._wrap(raw);
77 } 201 }
78 202
79 static BeforeLoadEvent wrapBeforeLoadEvent(raw) { 203 static BeforeLoadEvent wrapBeforeLoadEvent(raw) {
80 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new BeforeLoadEventWrappingImplementation._wrap(raw); 204 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new BeforeLoadEventWrappingImplementation._wrap(raw);
81 } 205 }
82 206
207 static BiquadFilterNode wrapBiquadFilterNode(raw) {
208 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new BiquadFilterNodeWrappingImplementation._wrap(raw);
209 }
210
83 static Blob wrapBlob(raw) { 211 static Blob wrapBlob(raw) {
84 if (raw === null) { return null; } 212 if (raw === null) { return null; }
85 if (raw.dartObjectLocalStorage !== null) { 213 if (raw.dartObjectLocalStorage !== null) {
86 return raw.dartObjectLocalStorage; 214 return raw.dartObjectLocalStorage;
87 } 215 }
88 switch (raw.typeName) { 216 switch (raw.typeName) {
89 case "Blob": 217 case "Blob":
90 return new BlobWrappingImplementation._wrap(raw); 218 return new BlobWrappingImplementation._wrap(raw);
91 case "File": 219 case "File":
92 return new FileWrappingImplementation._wrap(raw); 220 return new FileWrappingImplementation._wrap(raw);
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 } 337 }
210 switch (raw.typeName) { 338 switch (raw.typeName) {
211 case "CSSPrimitiveValue": 339 case "CSSPrimitiveValue":
212 return new CSSPrimitiveValueWrappingImplementation._wrap(raw); 340 return new CSSPrimitiveValueWrappingImplementation._wrap(raw);
213 case "WebKitCSSTransformValue": 341 case "WebKitCSSTransformValue":
214 return new CSSTransformValueWrappingImplementation._wrap(raw); 342 return new CSSTransformValueWrappingImplementation._wrap(raw);
215 case "CSSValue": 343 case "CSSValue":
216 return new CSSValueWrappingImplementation._wrap(raw); 344 return new CSSValueWrappingImplementation._wrap(raw);
217 case "CSSValueList": 345 case "CSSValueList":
218 return new CSSValueListWrappingImplementation._wrap(raw); 346 return new CSSValueListWrappingImplementation._wrap(raw);
347 case "SVGColor":
348 return new SVGColorWrappingImplementation._wrap(raw);
349 case "SVGPaint":
350 return new SVGPaintWrappingImplementation._wrap(raw);
351 case "WebKitCSSFilterValue":
352 return new WebKitCSSFilterValueWrappingImplementation._wrap(raw);
219 default: 353 default:
220 throw new UnsupportedOperationException("Unknown type:" + raw.toString() ); 354 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
221 } 355 }
222 } 356 }
223 357
224 static CSSValueList wrapCSSValueList(raw) { 358 static CSSValueList wrapCSSValueList(raw) {
225 if (raw === null) { return null; } 359 if (raw === null) { return null; }
226 if (raw.dartObjectLocalStorage !== null) { 360 if (raw.dartObjectLocalStorage !== null) {
227 return raw.dartObjectLocalStorage; 361 return raw.dartObjectLocalStorage;
228 } 362 }
229 switch (raw.typeName) { 363 switch (raw.typeName) {
230 case "WebKitCSSTransformValue": 364 case "WebKitCSSTransformValue":
231 return new CSSTransformValueWrappingImplementation._wrap(raw); 365 return new CSSTransformValueWrappingImplementation._wrap(raw);
232 case "CSSValueList": 366 case "CSSValueList":
233 return new CSSValueListWrappingImplementation._wrap(raw); 367 return new CSSValueListWrappingImplementation._wrap(raw);
368 case "WebKitCSSFilterValue":
369 return new WebKitCSSFilterValueWrappingImplementation._wrap(raw);
234 default: 370 default:
235 throw new UnsupportedOperationException("Unknown type:" + raw.toString() ); 371 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
236 } 372 }
237 } 373 }
238 374
239 static CanvasElement wrapCanvasElement(raw) { 375 static CanvasElement wrapCanvasElement(raw) {
240 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new CanvasElementWrappingImplementation._wrap(raw); 376 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new CanvasElementWrappingImplementation._wrap(raw);
241 } 377 }
242 378
243 static CanvasGradient wrapCanvasGradient(raw) { 379 static CanvasGradient wrapCanvasGradient(raw) {
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 return new TextWrappingImplementation._wrap(raw); 425 return new TextWrappingImplementation._wrap(raw);
290 default: 426 default:
291 throw new UnsupportedOperationException("Unknown type:" + raw.toString() ); 427 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
292 } 428 }
293 } 429 }
294 430
295 static ClientRect wrapClientRect(raw) { 431 static ClientRect wrapClientRect(raw) {
296 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ClientRectWrappingImplementation._wrap(raw); 432 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ClientRectWrappingImplementation._wrap(raw);
297 } 433 }
298 434
435 static ClientRectList wrapClientRectList(raw) {
436 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ClientRectListWrappingImplementation._wrap(raw);
437 }
438
299 static Clipboard wrapClipboard(raw) { 439 static Clipboard wrapClipboard(raw) {
300 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ClipboardWrappingImplementation._wrap(raw); 440 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ClipboardWrappingImplementation._wrap(raw);
301 } 441 }
302 442
303 static CloseEvent wrapCloseEvent(raw) { 443 static CloseEvent wrapCloseEvent(raw) {
304 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new CloseEventWrappingImplementation._wrap(raw); 444 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new CloseEventWrappingImplementation._wrap(raw);
305 } 445 }
306 446
307 static Comment wrapComment(raw) { 447 static Comment wrapComment(raw) {
308 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new CommentWrappingImplementation._wrap(raw); 448 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new CommentWrappingImplementation._wrap(raw);
309 } 449 }
310 450
311 static CompositionEvent wrapCompositionEvent(raw) { 451 static CompositionEvent wrapCompositionEvent(raw) {
312 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new CompositionEventWrappingImplementation._wrap(raw); 452 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new CompositionEventWrappingImplementation._wrap(raw);
313 } 453 }
314 454
315 static Console wrapConsole(raw) { 455 static Console wrapConsole(raw) {
316 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ConsoleWrappingImplementation._wrap(raw); 456 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ConsoleWrappingImplementation._wrap(raw);
317 } 457 }
318 458
459 static ConvolverNode wrapConvolverNode(raw) {
460 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ConvolverNodeWrappingImplementation._wrap(raw);
461 }
462
319 static Coordinates wrapCoordinates(raw) { 463 static Coordinates wrapCoordinates(raw) {
320 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new CoordinatesWrappingImplementation._wrap(raw); 464 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new CoordinatesWrappingImplementation._wrap(raw);
321 } 465 }
322 466
323 static Counter wrapCounter(raw) { 467 static Counter wrapCounter(raw) {
324 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new CounterWrappingImplementation._wrap(raw); 468 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new CounterWrappingImplementation._wrap(raw);
325 } 469 }
326 470
327 static Crypto wrapCrypto(raw) { 471 static Crypto wrapCrypto(raw) {
328 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new CryptoWrappingImplementation._wrap(raw); 472 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new CryptoWrappingImplementation._wrap(raw);
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 } 548 }
405 549
406 static DataListElement wrapDataListElement(raw) { 550 static DataListElement wrapDataListElement(raw) {
407 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DataListElementWrappingImplementation._wrap(raw); 551 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DataListElementWrappingImplementation._wrap(raw);
408 } 552 }
409 553
410 static DataTransferItem wrapDataTransferItem(raw) { 554 static DataTransferItem wrapDataTransferItem(raw) {
411 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DataTransferItemWrappingImplementation._wrap(raw); 555 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DataTransferItemWrappingImplementation._wrap(raw);
412 } 556 }
413 557
414 static DataTransferItems wrapDataTransferItems(raw) { 558 static DataTransferItemList wrapDataTransferItemList(raw) {
415 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DataTransferItemsWrappingImplementation._wrap(raw); 559 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DataTransferItemListWrappingImplementation._wrap(raw);
416 } 560 }
417 561
418 static DataView wrapDataView(raw) { 562 static DataView wrapDataView(raw) {
419 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DataViewWrappingImplementation._wrap(raw); 563 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DataViewWrappingImplementation._wrap(raw);
420 } 564 }
421 565
566 // Skipped DatabaseCallback
567 static DelayNode wrapDelayNode(raw) {
568 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DelayNodeWrappingImplementation._wrap(raw);
569 }
570
422 static DetailsElement wrapDetailsElement(raw) { 571 static DetailsElement wrapDetailsElement(raw) {
423 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DetailsElementWrappingImplementation._wrap(raw); 572 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DetailsElementWrappingImplementation._wrap(raw);
424 } 573 }
425 574
426 static DeviceMotionEvent wrapDeviceMotionEvent(raw) { 575 static DeviceMotionEvent wrapDeviceMotionEvent(raw) {
427 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DeviceMotionEventWrappingImplementation._wrap(raw); 576 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DeviceMotionEventWrappingImplementation._wrap(raw);
428 } 577 }
429 578
430 static DeviceOrientationEvent wrapDeviceOrientationEvent(raw) { 579 static DeviceOrientationEvent wrapDeviceOrientationEvent(raw) {
431 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DeviceOrientationEventWrappingImplementation._wrap(raw); 580 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DeviceOrientationEventWrappingImplementation._wrap(raw);
(...skipping 13 matching lines...) Expand all
445 594
446 static DirectoryReaderSync wrapDirectoryReaderSync(raw) { 595 static DirectoryReaderSync wrapDirectoryReaderSync(raw) {
447 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DirectoryReaderSyncWrappingImplementation._wrap(raw); 596 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DirectoryReaderSyncWrappingImplementation._wrap(raw);
448 } 597 }
449 598
450 static DivElement wrapDivElement(raw) { 599 static DivElement wrapDivElement(raw) {
451 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DivElementWrappingImplementation._wrap(raw); 600 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DivElementWrappingImplementation._wrap(raw);
452 } 601 }
453 602
454 static Document wrapDocument(raw) { 603 static Document wrapDocument(raw) {
455 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DocumentWrappingImplementation._wrap(raw, raw.documentEl ement); 604 if (raw === null) { return null; }
605 if (raw.dartObjectLocalStorage !== null) {
606 return raw.dartObjectLocalStorage;
607 }
608 switch (raw.typeName) {
609 case "HTMLDocument":
610 return new DocumentWrappingImplementation._wrap(raw, raw.documentElement );
611 case "SVGDocument":
612 return new SVGDocumentWrappingImplementation._wrap(raw);
613 default:
614 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
615 }
456 } 616 }
457 617
458 static DocumentFragment wrapDocumentFragment(raw) { 618 static DocumentFragment wrapDocumentFragment(raw) {
459 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DocumentFragmentWrappingImplementation._wrap(raw); 619 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DocumentFragmentWrappingImplementation._wrap(raw);
460 } 620 }
461 621
622 static DynamicsCompressorNode wrapDynamicsCompressorNode(raw) {
623 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new DynamicsCompressorNodeWrappingImplementation._wrap(raw);
624 }
625
462 static Element wrapElement(raw) { 626 static Element wrapElement(raw) {
463 if (raw === null) { return null; } 627 if (raw === null) { return null; }
464 if (raw.dartObjectLocalStorage !== null) { 628 if (raw.dartObjectLocalStorage !== null) {
465 return raw.dartObjectLocalStorage; 629 return raw.dartObjectLocalStorage;
466 } 630 }
467 switch (raw.typeName) { 631 switch (raw.typeName) {
468 case "HTMLAnchorElement": 632 case "HTMLAnchorElement":
469 return new AnchorElementWrappingImplementation._wrap(raw); 633 return new AnchorElementWrappingImplementation._wrap(raw);
470 /* Skipping HTMLAppletElement*/ 634 /* Skipping HTMLAppletElement*/
471 case "HTMLAreaElement": 635 case "HTMLAreaElement":
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
556 case "HTMLParagraphElement": 720 case "HTMLParagraphElement":
557 return new ParagraphElementWrappingImplementation._wrap(raw); 721 return new ParagraphElementWrappingImplementation._wrap(raw);
558 case "HTMLParamElement": 722 case "HTMLParamElement":
559 return new ParamElementWrappingImplementation._wrap(raw); 723 return new ParamElementWrappingImplementation._wrap(raw);
560 case "HTMLPreElement": 724 case "HTMLPreElement":
561 return new PreElementWrappingImplementation._wrap(raw); 725 return new PreElementWrappingImplementation._wrap(raw);
562 case "HTMLProgressElement": 726 case "HTMLProgressElement":
563 return new ProgressElementWrappingImplementation._wrap(raw); 727 return new ProgressElementWrappingImplementation._wrap(raw);
564 case "HTMLQuoteElement": 728 case "HTMLQuoteElement":
565 return new QuoteElementWrappingImplementation._wrap(raw); 729 return new QuoteElementWrappingImplementation._wrap(raw);
730 case "SVGAElement":
731 return new SVGAElementWrappingImplementation._wrap(raw);
732 case "SVGAltGlyphDefElement":
733 return new SVGAltGlyphDefElementWrappingImplementation._wrap(raw);
734 case "SVGAltGlyphElement":
735 return new SVGAltGlyphElementWrappingImplementation._wrap(raw);
736 case "SVGAltGlyphItemElement":
737 return new SVGAltGlyphItemElementWrappingImplementation._wrap(raw);
738 case "SVGAnimateColorElement":
739 return new SVGAnimateColorElementWrappingImplementation._wrap(raw);
740 case "SVGAnimateElement":
741 return new SVGAnimateElementWrappingImplementation._wrap(raw);
742 case "SVGAnimateMotionElement":
743 return new SVGAnimateMotionElementWrappingImplementation._wrap(raw);
744 case "SVGAnimateTransformElement":
745 return new SVGAnimateTransformElementWrappingImplementation._wrap(raw);
746 case "SVGAnimationElement":
747 return new SVGAnimationElementWrappingImplementation._wrap(raw);
748 case "SVGCircleElement":
749 return new SVGCircleElementWrappingImplementation._wrap(raw);
750 case "SVGClipPathElement":
751 return new SVGClipPathElementWrappingImplementation._wrap(raw);
752 case "SVGComponentTransferFunctionElement":
753 return new SVGComponentTransferFunctionElementWrappingImplementation._wr ap(raw);
754 case "SVGCursorElement":
755 return new SVGCursorElementWrappingImplementation._wrap(raw);
756 case "SVGDefsElement":
757 return new SVGDefsElementWrappingImplementation._wrap(raw);
758 case "SVGDescElement":
759 return new SVGDescElementWrappingImplementation._wrap(raw);
760 case "SVGElement":
761 return new SVGElementWrappingImplementation._wrap(raw);
762 case "SVGEllipseElement":
763 return new SVGEllipseElementWrappingImplementation._wrap(raw);
764 case "SVGFEBlendElement":
765 return new SVGFEBlendElementWrappingImplementation._wrap(raw);
766 case "SVGFEColorMatrixElement":
767 return new SVGFEColorMatrixElementWrappingImplementation._wrap(raw);
768 case "SVGFEComponentTransferElement":
769 return new SVGFEComponentTransferElementWrappingImplementation._wrap(raw );
770 /* Skipping SVGFECompositeElement*/
771 case "SVGFEConvolveMatrixElement":
772 return new SVGFEConvolveMatrixElementWrappingImplementation._wrap(raw);
773 case "SVGFEDiffuseLightingElement":
774 return new SVGFEDiffuseLightingElementWrappingImplementation._wrap(raw);
775 case "SVGFEDisplacementMapElement":
776 return new SVGFEDisplacementMapElementWrappingImplementation._wrap(raw);
777 case "SVGFEDistantLightElement":
778 return new SVGFEDistantLightElementWrappingImplementation._wrap(raw);
779 case "SVGFEDropShadowElement":
780 return new SVGFEDropShadowElementWrappingImplementation._wrap(raw);
781 case "SVGFEFloodElement":
782 return new SVGFEFloodElementWrappingImplementation._wrap(raw);
783 case "SVGFEFuncAElement":
784 return new SVGFEFuncAElementWrappingImplementation._wrap(raw);
785 case "SVGFEFuncBElement":
786 return new SVGFEFuncBElementWrappingImplementation._wrap(raw);
787 case "SVGFEFuncGElement":
788 return new SVGFEFuncGElementWrappingImplementation._wrap(raw);
789 case "SVGFEFuncRElement":
790 return new SVGFEFuncRElementWrappingImplementation._wrap(raw);
791 case "SVGFEGaussianBlurElement":
792 return new SVGFEGaussianBlurElementWrappingImplementation._wrap(raw);
793 case "SVGFEImageElement":
794 return new SVGFEImageElementWrappingImplementation._wrap(raw);
795 case "SVGFEMergeElement":
796 return new SVGFEMergeElementWrappingImplementation._wrap(raw);
797 case "SVGFEMergeNodeElement":
798 return new SVGFEMergeNodeElementWrappingImplementation._wrap(raw);
799 /* Skipping SVGFEMorphologyElement*/
800 case "SVGFEOffsetElement":
801 return new SVGFEOffsetElementWrappingImplementation._wrap(raw);
802 case "SVGFEPointLightElement":
803 return new SVGFEPointLightElementWrappingImplementation._wrap(raw);
804 case "SVGFESpecularLightingElement":
805 return new SVGFESpecularLightingElementWrappingImplementation._wrap(raw) ;
806 case "SVGFESpotLightElement":
807 return new SVGFESpotLightElementWrappingImplementation._wrap(raw);
808 case "SVGFETileElement":
809 return new SVGFETileElementWrappingImplementation._wrap(raw);
810 case "SVGFETurbulenceElement":
811 return new SVGFETurbulenceElementWrappingImplementation._wrap(raw);
812 case "SVGFilterElement":
813 return new SVGFilterElementWrappingImplementation._wrap(raw);
814 case "SVGFontElement":
815 return new SVGFontElementWrappingImplementation._wrap(raw);
816 case "SVGFontFaceElement":
817 return new SVGFontFaceElementWrappingImplementation._wrap(raw);
818 case "SVGFontFaceFormatElement":
819 return new SVGFontFaceFormatElementWrappingImplementation._wrap(raw);
820 case "SVGFontFaceNameElement":
821 return new SVGFontFaceNameElementWrappingImplementation._wrap(raw);
822 case "SVGFontFaceSrcElement":
823 return new SVGFontFaceSrcElementWrappingImplementation._wrap(raw);
824 case "SVGFontFaceUriElement":
825 return new SVGFontFaceUriElementWrappingImplementation._wrap(raw);
826 case "SVGForeignObjectElement":
827 return new SVGForeignObjectElementWrappingImplementation._wrap(raw);
828 case "SVGGElement":
829 return new SVGGElementWrappingImplementation._wrap(raw);
830 case "SVGGlyphElement":
831 return new SVGGlyphElementWrappingImplementation._wrap(raw);
832 case "SVGGlyphRefElement":
833 return new SVGGlyphRefElementWrappingImplementation._wrap(raw);
834 case "SVGGradientElement":
835 return new SVGGradientElementWrappingImplementation._wrap(raw);
836 case "SVGHKernElement":
837 return new SVGHKernElementWrappingImplementation._wrap(raw);
838 case "SVGImageElement":
839 return new SVGImageElementWrappingImplementation._wrap(raw);
840 case "SVGLineElement":
841 return new SVGLineElementWrappingImplementation._wrap(raw);
842 case "SVGLinearGradientElement":
843 return new SVGLinearGradientElementWrappingImplementation._wrap(raw);
844 case "SVGMPathElement":
845 return new SVGMPathElementWrappingImplementation._wrap(raw);
846 case "SVGMarkerElement":
847 return new SVGMarkerElementWrappingImplementation._wrap(raw);
848 case "SVGMaskElement":
849 return new SVGMaskElementWrappingImplementation._wrap(raw);
850 case "SVGMetadataElement":
851 return new SVGMetadataElementWrappingImplementation._wrap(raw);
852 case "SVGMissingGlyphElement":
853 return new SVGMissingGlyphElementWrappingImplementation._wrap(raw);
854 case "SVGPathElement":
855 return new SVGPathElementWrappingImplementation._wrap(raw);
856 case "SVGPatternElement":
857 return new SVGPatternElementWrappingImplementation._wrap(raw);
858 case "SVGPolygonElement":
859 return new SVGPolygonElementWrappingImplementation._wrap(raw);
860 case "SVGPolylineElement":
861 return new SVGPolylineElementWrappingImplementation._wrap(raw);
862 case "SVGRadialGradientElement":
863 return new SVGRadialGradientElementWrappingImplementation._wrap(raw);
864 case "SVGRectElement":
865 return new SVGRectElementWrappingImplementation._wrap(raw);
866 case "SVGSVGElement":
867 return new SVGSVGElementWrappingImplementation._wrap(raw);
868 case "SVGScriptElement":
869 return new SVGScriptElementWrappingImplementation._wrap(raw);
870 case "SVGSetElement":
871 return new SVGSetElementWrappingImplementation._wrap(raw);
872 case "SVGStopElement":
873 return new SVGStopElementWrappingImplementation._wrap(raw);
874 case "SVGStyleElement":
875 return new SVGStyleElementWrappingImplementation._wrap(raw);
876 case "SVGSwitchElement":
877 return new SVGSwitchElementWrappingImplementation._wrap(raw);
878 case "SVGSymbolElement":
879 return new SVGSymbolElementWrappingImplementation._wrap(raw);
880 case "SVGTRefElement":
881 return new SVGTRefElementWrappingImplementation._wrap(raw);
882 case "SVGTSpanElement":
883 return new SVGTSpanElementWrappingImplementation._wrap(raw);
884 case "SVGTextContentElement":
885 return new SVGTextContentElementWrappingImplementation._wrap(raw);
886 case "SVGTextElement":
887 return new SVGTextElementWrappingImplementation._wrap(raw);
888 case "SVGTextPathElement":
889 return new SVGTextPathElementWrappingImplementation._wrap(raw);
890 case "SVGTextPositioningElement":
891 return new SVGTextPositioningElementWrappingImplementation._wrap(raw);
892 case "SVGTitleElement":
893 return new SVGTitleElementWrappingImplementation._wrap(raw);
894 case "SVGUseElement":
895 return new SVGUseElementWrappingImplementation._wrap(raw);
896 case "SVGVKernElement":
897 return new SVGVKernElementWrappingImplementation._wrap(raw);
898 case "SVGViewElement":
899 return new SVGViewElementWrappingImplementation._wrap(raw);
566 case "HTMLScriptElement": 900 case "HTMLScriptElement":
567 return new ScriptElementWrappingImplementation._wrap(raw); 901 return new ScriptElementWrappingImplementation._wrap(raw);
568 case "HTMLSelectElement": 902 case "HTMLSelectElement":
569 return new SelectElementWrappingImplementation._wrap(raw); 903 return new SelectElementWrappingImplementation._wrap(raw);
570 case "HTMLSourceElement": 904 case "HTMLSourceElement":
571 return new SourceElementWrappingImplementation._wrap(raw); 905 return new SourceElementWrappingImplementation._wrap(raw);
572 case "HTMLSpanElement": 906 case "HTMLSpanElement":
573 return new SpanElementWrappingImplementation._wrap(raw); 907 return new SpanElementWrappingImplementation._wrap(raw);
574 case "HTMLStyleElement": 908 case "HTMLStyleElement":
575 return new StyleElementWrappingImplementation._wrap(raw); 909 return new StyleElementWrappingImplementation._wrap(raw);
(...skipping 23 matching lines...) Expand all
599 return new VideoElementWrappingImplementation._wrap(raw); 933 return new VideoElementWrappingImplementation._wrap(raw);
600 default: 934 default:
601 throw new UnsupportedOperationException("Unknown type:" + raw.toString() ); 935 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
602 } 936 }
603 } 937 }
604 938
605 static ElementList wrapElementList(raw) { 939 static ElementList wrapElementList(raw) {
606 return raw === null ? null : new FrozenElementList._wrap(raw); 940 return raw === null ? null : new FrozenElementList._wrap(raw);
607 } 941 }
608 942
943 static ElementTimeControl wrapElementTimeControl(raw) {
944 if (raw === null) { return null; }
945 if (raw.dartObjectLocalStorage !== null) {
946 return raw.dartObjectLocalStorage;
947 }
948 switch (raw.typeName) {
949 case "ElementTimeControl":
950 return new ElementTimeControlWrappingImplementation._wrap(raw);
951 case "SVGAnimateColorElement":
952 return new SVGAnimateColorElementWrappingImplementation._wrap(raw);
953 case "SVGAnimateElement":
954 return new SVGAnimateElementWrappingImplementation._wrap(raw);
955 case "SVGAnimateMotionElement":
956 return new SVGAnimateMotionElementWrappingImplementation._wrap(raw);
957 case "SVGAnimateTransformElement":
958 return new SVGAnimateTransformElementWrappingImplementation._wrap(raw);
959 case "SVGAnimationElement":
960 return new SVGAnimationElementWrappingImplementation._wrap(raw);
961 case "SVGSetElement":
962 return new SVGSetElementWrappingImplementation._wrap(raw);
963 default:
964 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
965 }
966 }
967
609 static EmbedElement wrapEmbedElement(raw) { 968 static EmbedElement wrapEmbedElement(raw) {
610 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new EmbedElementWrappingImplementation._wrap(raw); 969 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new EmbedElementWrappingImplementation._wrap(raw);
611 } 970 }
612 971
613 static Entity wrapEntity(raw) { 972 static Entity wrapEntity(raw) {
614 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new EntityWrappingImplementation._wrap(raw); 973 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new EntityWrappingImplementation._wrap(raw);
615 } 974 }
616 975
617 static EntityReference wrapEntityReference(raw) { 976 static EntityReference wrapEntityReference(raw) {
618 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new EntityReferenceWrappingImplementation._wrap(raw); 977 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new EntityReferenceWrappingImplementation._wrap(raw);
619 } 978 }
620 979
621 static EntriesCallback wrapEntriesCallback(raw) { 980 // Skipped EntriesCallback
622 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new EntriesCallbackWrappingImplementation._wrap(raw);
623 }
624
625 static Entry wrapEntry(raw) { 981 static Entry wrapEntry(raw) {
626 if (raw === null) { return null; } 982 if (raw === null) { return null; }
627 if (raw.dartObjectLocalStorage !== null) { 983 if (raw.dartObjectLocalStorage !== null) {
628 return raw.dartObjectLocalStorage; 984 return raw.dartObjectLocalStorage;
629 } 985 }
630 switch (raw.typeName) { 986 switch (raw.typeName) {
631 case "DirectoryEntry": 987 case "DirectoryEntry":
632 return new DirectoryEntryWrappingImplementation._wrap(raw); 988 return new DirectoryEntryWrappingImplementation._wrap(raw);
633 case "Entry": 989 case "Entry":
634 return new EntryWrappingImplementation._wrap(raw); 990 return new EntryWrappingImplementation._wrap(raw);
635 case "FileEntry": 991 case "FileEntry":
636 return new FileEntryWrappingImplementation._wrap(raw); 992 return new FileEntryWrappingImplementation._wrap(raw);
637 default: 993 default:
638 throw new UnsupportedOperationException("Unknown type:" + raw.toString() ); 994 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
639 } 995 }
640 } 996 }
641 997
642 static EntryArray wrapEntryArray(raw) { 998 static EntryArray wrapEntryArray(raw) {
643 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new EntryArrayWrappingImplementation._wrap(raw); 999 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new EntryArrayWrappingImplementation._wrap(raw);
644 } 1000 }
645 1001
646 static EntryArraySync wrapEntryArraySync(raw) { 1002 static EntryArraySync wrapEntryArraySync(raw) {
647 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new EntryArraySyncWrappingImplementation._wrap(raw); 1003 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new EntryArraySyncWrappingImplementation._wrap(raw);
648 } 1004 }
649 1005
650 static EntryCallback wrapEntryCallback(raw) { 1006 // Skipped EntryCallback
651 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new EntryCallbackWrappingImplementation._wrap(raw);
652 }
653
654 static EntrySync wrapEntrySync(raw) { 1007 static EntrySync wrapEntrySync(raw) {
655 if (raw === null) { return null; } 1008 if (raw === null) { return null; }
656 if (raw.dartObjectLocalStorage !== null) { 1009 if (raw.dartObjectLocalStorage !== null) {
657 return raw.dartObjectLocalStorage; 1010 return raw.dartObjectLocalStorage;
658 } 1011 }
659 switch (raw.typeName) { 1012 switch (raw.typeName) {
660 case "DirectoryEntrySync": 1013 case "DirectoryEntrySync":
661 return new DirectoryEntrySyncWrappingImplementation._wrap(raw); 1014 return new DirectoryEntrySyncWrappingImplementation._wrap(raw);
662 case "EntrySync": 1015 case "EntrySync":
663 return new EntrySyncWrappingImplementation._wrap(raw); 1016 return new EntrySyncWrappingImplementation._wrap(raw);
664 case "FileEntrySync": 1017 case "FileEntrySync":
665 return new FileEntrySyncWrappingImplementation._wrap(raw); 1018 return new FileEntrySyncWrappingImplementation._wrap(raw);
666 default: 1019 default:
667 throw new UnsupportedOperationException("Unknown type:" + raw.toString() ); 1020 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
668 } 1021 }
669 } 1022 }
670 1023
671 static ErrorCallback wrapErrorCallback(raw) { 1024 // Skipped ErrorCallback
672 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ErrorCallbackWrappingImplementation._wrap(raw);
673 }
674
675 static ErrorEvent wrapErrorEvent(raw) { 1025 static ErrorEvent wrapErrorEvent(raw) {
676 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ErrorEventWrappingImplementation._wrap(raw); 1026 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ErrorEventWrappingImplementation._wrap(raw);
677 } 1027 }
678 1028
679 static Event wrapEvent(raw) { 1029 static Event wrapEvent(raw) {
680 if (raw === null) { return null; } 1030 if (raw === null) { return null; }
681 if (raw.dartObjectLocalStorage !== null) { 1031 if (raw.dartObjectLocalStorage !== null) {
682 return raw.dartObjectLocalStorage; 1032 return raw.dartObjectLocalStorage;
683 } 1033 }
684 switch (raw.typeName) { 1034 switch (raw.typeName) {
685 case "WebKitAnimationEvent": 1035 case "WebKitAnimationEvent":
686 return new AnimationEventWrappingImplementation._wrap(raw); 1036 return new AnimationEventWrappingImplementation._wrap(raw);
1037 case "AudioProcessingEvent":
1038 return new AudioProcessingEventWrappingImplementation._wrap(raw);
687 case "BeforeLoadEvent": 1039 case "BeforeLoadEvent":
688 return new BeforeLoadEventWrappingImplementation._wrap(raw); 1040 return new BeforeLoadEventWrappingImplementation._wrap(raw);
689 case "CloseEvent": 1041 case "CloseEvent":
690 return new CloseEventWrappingImplementation._wrap(raw); 1042 return new CloseEventWrappingImplementation._wrap(raw);
691 case "CompositionEvent": 1043 case "CompositionEvent":
692 return new CompositionEventWrappingImplementation._wrap(raw); 1044 return new CompositionEventWrappingImplementation._wrap(raw);
693 case "CustomEvent": 1045 case "CustomEvent":
694 return new CustomEventWrappingImplementation._wrap(raw); 1046 return new CustomEventWrappingImplementation._wrap(raw);
695 case "DeviceMotionEvent": 1047 case "DeviceMotionEvent":
696 return new DeviceMotionEventWrappingImplementation._wrap(raw); 1048 return new DeviceMotionEventWrappingImplementation._wrap(raw);
697 case "DeviceOrientationEvent": 1049 case "DeviceOrientationEvent":
698 return new DeviceOrientationEventWrappingImplementation._wrap(raw); 1050 return new DeviceOrientationEventWrappingImplementation._wrap(raw);
699 case "ErrorEvent": 1051 case "ErrorEvent":
700 return new ErrorEventWrappingImplementation._wrap(raw); 1052 return new ErrorEventWrappingImplementation._wrap(raw);
701 case "Event": 1053 case "Event":
702 return new EventWrappingImplementation._wrap(raw); 1054 return new EventWrappingImplementation._wrap(raw);
703 case "HashChangeEvent": 1055 case "HashChangeEvent":
704 return new HashChangeEventWrappingImplementation._wrap(raw); 1056 return new HashChangeEventWrappingImplementation._wrap(raw);
705 case "IDBVersionChangeEvent": 1057 case "IDBVersionChangeEvent":
706 return new IDBVersionChangeEventWrappingImplementation._wrap(raw); 1058 return new IDBVersionChangeEventWrappingImplementation._wrap(raw);
707 case "KeyboardEvent": 1059 case "KeyboardEvent":
708 return new KeyboardEventWrappingImplementation._wrap(raw); 1060 return new KeyboardEventWrappingImplementation._wrap(raw);
709 case "MessageEvent": 1061 case "MessageEvent":
710 return new MessageEventWrappingImplementation._wrap(raw); 1062 return new MessageEventWrappingImplementation._wrap(raw);
711 case "MouseEvent": 1063 case "MouseEvent":
712 return new MouseEventWrappingImplementation._wrap(raw); 1064 return new MouseEventWrappingImplementation._wrap(raw);
713 case "MutationEvent": 1065 case "MutationEvent":
714 return new MutationEventWrappingImplementation._wrap(raw); 1066 return new MutationEventWrappingImplementation._wrap(raw);
1067 case "OfflineAudioCompletionEvent":
1068 return new OfflineAudioCompletionEventWrappingImplementation._wrap(raw);
715 case "OverflowEvent": 1069 case "OverflowEvent":
716 return new OverflowEventWrappingImplementation._wrap(raw); 1070 return new OverflowEventWrappingImplementation._wrap(raw);
717 case "PageTransitionEvent": 1071 case "PageTransitionEvent":
718 return new PageTransitionEventWrappingImplementation._wrap(raw); 1072 return new PageTransitionEventWrappingImplementation._wrap(raw);
719 case "PopStateEvent": 1073 case "PopStateEvent":
720 return new PopStateEventWrappingImplementation._wrap(raw); 1074 return new PopStateEventWrappingImplementation._wrap(raw);
721 case "ProgressEvent": 1075 case "ProgressEvent":
722 return new ProgressEventWrappingImplementation._wrap(raw); 1076 return new ProgressEventWrappingImplementation._wrap(raw);
1077 case "SVGZoomEvent":
1078 return new SVGZoomEventWrappingImplementation._wrap(raw);
723 case "SpeechInputEvent": 1079 case "SpeechInputEvent":
724 return new SpeechInputEventWrappingImplementation._wrap(raw); 1080 return new SpeechInputEventWrappingImplementation._wrap(raw);
725 case "StorageEvent": 1081 case "StorageEvent":
726 return new StorageEventWrappingImplementation._wrap(raw); 1082 return new StorageEventWrappingImplementation._wrap(raw);
727 case "TextEvent": 1083 case "TextEvent":
728 return new TextEventWrappingImplementation._wrap(raw); 1084 return new TextEventWrappingImplementation._wrap(raw);
729 case "TouchEvent": 1085 case "TouchEvent":
730 return new TouchEventWrappingImplementation._wrap(raw); 1086 return new TouchEventWrappingImplementation._wrap(raw);
731 case "WebKitTransitionEvent": 1087 case "WebKitTransitionEvent":
732 return new TransitionEventWrappingImplementation._wrap(raw); 1088 return new TransitionEventWrappingImplementation._wrap(raw);
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
885 case "HTMLParamElement": 1241 case "HTMLParamElement":
886 return new ParamElementWrappingImplementation._wrap(raw); 1242 return new ParamElementWrappingImplementation._wrap(raw);
887 case "HTMLPreElement": 1243 case "HTMLPreElement":
888 return new PreElementWrappingImplementation._wrap(raw); 1244 return new PreElementWrappingImplementation._wrap(raw);
889 case "ProcessingInstruction": 1245 case "ProcessingInstruction":
890 return new ProcessingInstructionWrappingImplementation._wrap(raw); 1246 return new ProcessingInstructionWrappingImplementation._wrap(raw);
891 case "HTMLProgressElement": 1247 case "HTMLProgressElement":
892 return new ProgressElementWrappingImplementation._wrap(raw); 1248 return new ProgressElementWrappingImplementation._wrap(raw);
893 case "HTMLQuoteElement": 1249 case "HTMLQuoteElement":
894 return new QuoteElementWrappingImplementation._wrap(raw); 1250 return new QuoteElementWrappingImplementation._wrap(raw);
1251 case "SVGAElement":
1252 return new SVGAElementWrappingImplementation._wrap(raw);
1253 case "SVGAltGlyphDefElement":
1254 return new SVGAltGlyphDefElementWrappingImplementation._wrap(raw);
1255 case "SVGAltGlyphElement":
1256 return new SVGAltGlyphElementWrappingImplementation._wrap(raw);
1257 case "SVGAltGlyphItemElement":
1258 return new SVGAltGlyphItemElementWrappingImplementation._wrap(raw);
1259 case "SVGAnimateColorElement":
1260 return new SVGAnimateColorElementWrappingImplementation._wrap(raw);
1261 case "SVGAnimateElement":
1262 return new SVGAnimateElementWrappingImplementation._wrap(raw);
1263 case "SVGAnimateMotionElement":
1264 return new SVGAnimateMotionElementWrappingImplementation._wrap(raw);
1265 case "SVGAnimateTransformElement":
1266 return new SVGAnimateTransformElementWrappingImplementation._wrap(raw);
1267 case "SVGAnimationElement":
1268 return new SVGAnimationElementWrappingImplementation._wrap(raw);
1269 case "SVGCircleElement":
1270 return new SVGCircleElementWrappingImplementation._wrap(raw);
1271 case "SVGClipPathElement":
1272 return new SVGClipPathElementWrappingImplementation._wrap(raw);
1273 case "SVGComponentTransferFunctionElement":
1274 return new SVGComponentTransferFunctionElementWrappingImplementation._wr ap(raw);
1275 case "SVGCursorElement":
1276 return new SVGCursorElementWrappingImplementation._wrap(raw);
1277 case "SVGDefsElement":
1278 return new SVGDefsElementWrappingImplementation._wrap(raw);
1279 case "SVGDescElement":
1280 return new SVGDescElementWrappingImplementation._wrap(raw);
1281 case "SVGDocument":
1282 return new SVGDocumentWrappingImplementation._wrap(raw);
1283 case "SVGElement":
1284 return new SVGElementWrappingImplementation._wrap(raw);
1285 case "SVGElementInstance":
1286 return new SVGElementInstanceWrappingImplementation._wrap(raw);
1287 case "SVGEllipseElement":
1288 return new SVGEllipseElementWrappingImplementation._wrap(raw);
1289 case "SVGFEBlendElement":
1290 return new SVGFEBlendElementWrappingImplementation._wrap(raw);
1291 case "SVGFEColorMatrixElement":
1292 return new SVGFEColorMatrixElementWrappingImplementation._wrap(raw);
1293 case "SVGFEComponentTransferElement":
1294 return new SVGFEComponentTransferElementWrappingImplementation._wrap(raw );
1295 /* Skipping SVGFECompositeElement*/
1296 case "SVGFEConvolveMatrixElement":
1297 return new SVGFEConvolveMatrixElementWrappingImplementation._wrap(raw);
1298 case "SVGFEDiffuseLightingElement":
1299 return new SVGFEDiffuseLightingElementWrappingImplementation._wrap(raw);
1300 case "SVGFEDisplacementMapElement":
1301 return new SVGFEDisplacementMapElementWrappingImplementation._wrap(raw);
1302 case "SVGFEDistantLightElement":
1303 return new SVGFEDistantLightElementWrappingImplementation._wrap(raw);
1304 case "SVGFEDropShadowElement":
1305 return new SVGFEDropShadowElementWrappingImplementation._wrap(raw);
1306 case "SVGFEFloodElement":
1307 return new SVGFEFloodElementWrappingImplementation._wrap(raw);
1308 case "SVGFEFuncAElement":
1309 return new SVGFEFuncAElementWrappingImplementation._wrap(raw);
1310 case "SVGFEFuncBElement":
1311 return new SVGFEFuncBElementWrappingImplementation._wrap(raw);
1312 case "SVGFEFuncGElement":
1313 return new SVGFEFuncGElementWrappingImplementation._wrap(raw);
1314 case "SVGFEFuncRElement":
1315 return new SVGFEFuncRElementWrappingImplementation._wrap(raw);
1316 case "SVGFEGaussianBlurElement":
1317 return new SVGFEGaussianBlurElementWrappingImplementation._wrap(raw);
1318 case "SVGFEImageElement":
1319 return new SVGFEImageElementWrappingImplementation._wrap(raw);
1320 case "SVGFEMergeElement":
1321 return new SVGFEMergeElementWrappingImplementation._wrap(raw);
1322 case "SVGFEMergeNodeElement":
1323 return new SVGFEMergeNodeElementWrappingImplementation._wrap(raw);
1324 /* Skipping SVGFEMorphologyElement*/
1325 case "SVGFEOffsetElement":
1326 return new SVGFEOffsetElementWrappingImplementation._wrap(raw);
1327 case "SVGFEPointLightElement":
1328 return new SVGFEPointLightElementWrappingImplementation._wrap(raw);
1329 case "SVGFESpecularLightingElement":
1330 return new SVGFESpecularLightingElementWrappingImplementation._wrap(raw) ;
1331 case "SVGFESpotLightElement":
1332 return new SVGFESpotLightElementWrappingImplementation._wrap(raw);
1333 case "SVGFETileElement":
1334 return new SVGFETileElementWrappingImplementation._wrap(raw);
1335 case "SVGFETurbulenceElement":
1336 return new SVGFETurbulenceElementWrappingImplementation._wrap(raw);
1337 case "SVGFilterElement":
1338 return new SVGFilterElementWrappingImplementation._wrap(raw);
1339 case "SVGFontElement":
1340 return new SVGFontElementWrappingImplementation._wrap(raw);
1341 case "SVGFontFaceElement":
1342 return new SVGFontFaceElementWrappingImplementation._wrap(raw);
1343 case "SVGFontFaceFormatElement":
1344 return new SVGFontFaceFormatElementWrappingImplementation._wrap(raw);
1345 case "SVGFontFaceNameElement":
1346 return new SVGFontFaceNameElementWrappingImplementation._wrap(raw);
1347 case "SVGFontFaceSrcElement":
1348 return new SVGFontFaceSrcElementWrappingImplementation._wrap(raw);
1349 case "SVGFontFaceUriElement":
1350 return new SVGFontFaceUriElementWrappingImplementation._wrap(raw);
1351 case "SVGForeignObjectElement":
1352 return new SVGForeignObjectElementWrappingImplementation._wrap(raw);
1353 case "SVGGElement":
1354 return new SVGGElementWrappingImplementation._wrap(raw);
1355 case "SVGGlyphElement":
1356 return new SVGGlyphElementWrappingImplementation._wrap(raw);
1357 case "SVGGlyphRefElement":
1358 return new SVGGlyphRefElementWrappingImplementation._wrap(raw);
1359 case "SVGGradientElement":
1360 return new SVGGradientElementWrappingImplementation._wrap(raw);
1361 case "SVGHKernElement":
1362 return new SVGHKernElementWrappingImplementation._wrap(raw);
1363 case "SVGImageElement":
1364 return new SVGImageElementWrappingImplementation._wrap(raw);
1365 case "SVGLineElement":
1366 return new SVGLineElementWrappingImplementation._wrap(raw);
1367 case "SVGLinearGradientElement":
1368 return new SVGLinearGradientElementWrappingImplementation._wrap(raw);
1369 case "SVGMPathElement":
1370 return new SVGMPathElementWrappingImplementation._wrap(raw);
1371 case "SVGMarkerElement":
1372 return new SVGMarkerElementWrappingImplementation._wrap(raw);
1373 case "SVGMaskElement":
1374 return new SVGMaskElementWrappingImplementation._wrap(raw);
1375 case "SVGMetadataElement":
1376 return new SVGMetadataElementWrappingImplementation._wrap(raw);
1377 case "SVGMissingGlyphElement":
1378 return new SVGMissingGlyphElementWrappingImplementation._wrap(raw);
1379 case "SVGPathElement":
1380 return new SVGPathElementWrappingImplementation._wrap(raw);
1381 case "SVGPatternElement":
1382 return new SVGPatternElementWrappingImplementation._wrap(raw);
1383 case "SVGPolygonElement":
1384 return new SVGPolygonElementWrappingImplementation._wrap(raw);
1385 case "SVGPolylineElement":
1386 return new SVGPolylineElementWrappingImplementation._wrap(raw);
1387 case "SVGRadialGradientElement":
1388 return new SVGRadialGradientElementWrappingImplementation._wrap(raw);
1389 case "SVGRectElement":
1390 return new SVGRectElementWrappingImplementation._wrap(raw);
1391 case "SVGSVGElement":
1392 return new SVGSVGElementWrappingImplementation._wrap(raw);
1393 case "SVGScriptElement":
1394 return new SVGScriptElementWrappingImplementation._wrap(raw);
1395 case "SVGSetElement":
1396 return new SVGSetElementWrappingImplementation._wrap(raw);
1397 case "SVGStopElement":
1398 return new SVGStopElementWrappingImplementation._wrap(raw);
1399 case "SVGStyleElement":
1400 return new SVGStyleElementWrappingImplementation._wrap(raw);
1401 case "SVGSwitchElement":
1402 return new SVGSwitchElementWrappingImplementation._wrap(raw);
1403 case "SVGSymbolElement":
1404 return new SVGSymbolElementWrappingImplementation._wrap(raw);
1405 case "SVGTRefElement":
1406 return new SVGTRefElementWrappingImplementation._wrap(raw);
1407 case "SVGTSpanElement":
1408 return new SVGTSpanElementWrappingImplementation._wrap(raw);
1409 case "SVGTextContentElement":
1410 return new SVGTextContentElementWrappingImplementation._wrap(raw);
1411 case "SVGTextElement":
1412 return new SVGTextElementWrappingImplementation._wrap(raw);
1413 case "SVGTextPathElement":
1414 return new SVGTextPathElementWrappingImplementation._wrap(raw);
1415 case "SVGTextPositioningElement":
1416 return new SVGTextPositioningElementWrappingImplementation._wrap(raw);
1417 case "SVGTitleElement":
1418 return new SVGTitleElementWrappingImplementation._wrap(raw);
1419 case "SVGUseElement":
1420 return new SVGUseElementWrappingImplementation._wrap(raw);
1421 case "SVGVKernElement":
1422 return new SVGVKernElementWrappingImplementation._wrap(raw);
1423 case "SVGViewElement":
1424 return new SVGViewElementWrappingImplementation._wrap(raw);
895 case "HTMLScriptElement": 1425 case "HTMLScriptElement":
896 return new ScriptElementWrappingImplementation._wrap(raw); 1426 return new ScriptElementWrappingImplementation._wrap(raw);
897 case "HTMLSelectElement": 1427 case "HTMLSelectElement":
898 return new SelectElementWrappingImplementation._wrap(raw); 1428 return new SelectElementWrappingImplementation._wrap(raw);
899 case "SharedWorker": 1429 case "SharedWorker":
900 return new SharedWorkerWrappingImplementation._wrap(raw); 1430 return new SharedWorkerWrappingImplementation._wrap(raw);
901 case "HTMLSourceElement": 1431 case "HTMLSourceElement":
902 return new SourceElementWrappingImplementation._wrap(raw); 1432 return new SourceElementWrappingImplementation._wrap(raw);
903 case "HTMLSpanElement": 1433 case "HTMLSpanElement":
904 return new SpanElementWrappingImplementation._wrap(raw); 1434 return new SpanElementWrappingImplementation._wrap(raw);
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
946 } 1476 }
947 1477
948 static FieldSetElement wrapFieldSetElement(raw) { 1478 static FieldSetElement wrapFieldSetElement(raw) {
949 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FieldSetElementWrappingImplementation._wrap(raw); 1479 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FieldSetElementWrappingImplementation._wrap(raw);
950 } 1480 }
951 1481
952 static File wrapFile(raw) { 1482 static File wrapFile(raw) {
953 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileWrappingImplementation._wrap(raw); 1483 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileWrappingImplementation._wrap(raw);
954 } 1484 }
955 1485
956 static FileCallback wrapFileCallback(raw) { 1486 // Skipped FileCallback
957 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileCallbackWrappingImplementation._wrap(raw);
958 }
959
960 static FileEntry wrapFileEntry(raw) { 1487 static FileEntry wrapFileEntry(raw) {
961 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileEntryWrappingImplementation._wrap(raw); 1488 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileEntryWrappingImplementation._wrap(raw);
962 } 1489 }
963 1490
964 static FileEntrySync wrapFileEntrySync(raw) { 1491 static FileEntrySync wrapFileEntrySync(raw) {
965 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileEntrySyncWrappingImplementation._wrap(raw); 1492 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileEntrySyncWrappingImplementation._wrap(raw);
966 } 1493 }
967 1494
968 static FileError wrapFileError(raw) { 1495 static FileError wrapFileError(raw) {
969 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileErrorWrappingImplementation._wrap(raw); 1496 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileErrorWrappingImplementation._wrap(raw);
970 } 1497 }
971 1498
972 static FileException wrapFileException(raw) { 1499 static FileException wrapFileException(raw) {
973 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileExceptionWrappingImplementation._wrap(raw); 1500 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileExceptionWrappingImplementation._wrap(raw);
974 } 1501 }
975 1502
976 static FileList wrapFileList(raw) { 1503 static FileList wrapFileList(raw) {
977 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileListWrappingImplementation._wrap(raw); 1504 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileListWrappingImplementation._wrap(raw);
978 } 1505 }
979 1506
980 static FileReader wrapFileReader(raw) { 1507 static FileReader wrapFileReader(raw) {
981 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileReaderWrappingImplementation._wrap(raw); 1508 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileReaderWrappingImplementation._wrap(raw);
982 } 1509 }
983 1510
984 static FileReaderSync wrapFileReaderSync(raw) { 1511 static FileReaderSync wrapFileReaderSync(raw) {
985 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileReaderSyncWrappingImplementation._wrap(raw); 1512 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileReaderSyncWrappingImplementation._wrap(raw);
986 } 1513 }
987 1514
988 static FileSystemCallback wrapFileSystemCallback(raw) { 1515 // Skipped FileSystemCallback
989 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileSystemCallbackWrappingImplementation._wrap(raw);
990 }
991
992 static FileWriter wrapFileWriter(raw) { 1516 static FileWriter wrapFileWriter(raw) {
993 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileWriterWrappingImplementation._wrap(raw); 1517 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileWriterWrappingImplementation._wrap(raw);
994 } 1518 }
995 1519
996 static FileWriterCallback wrapFileWriterCallback(raw) { 1520 // Skipped FileWriterCallback
997 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileWriterCallbackWrappingImplementation._wrap(raw);
998 }
999
1000 static FileWriterSync wrapFileWriterSync(raw) { 1521 static FileWriterSync wrapFileWriterSync(raw) {
1001 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileWriterSyncWrappingImplementation._wrap(raw); 1522 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FileWriterSyncWrappingImplementation._wrap(raw);
1002 } 1523 }
1003 1524
1004 static Flags wrapFlags(raw) { 1525 static Flags wrapFlags(raw) {
1005 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FlagsWrappingImplementation._wrap(raw); 1526 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new FlagsWrappingImplementation._wrap(raw);
1006 } 1527 }
1007 1528
1008 static Float32Array wrapFloat32Array(raw) { 1529 static Float32Array wrapFloat32Array(raw) {
1009 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new Float32ArrayWrappingImplementation._wrap(raw); 1530 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new Float32ArrayWrappingImplementation._wrap(raw);
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
1042 } 1563 }
1043 1564
1044 static HeadElement wrapHeadElement(raw) { 1565 static HeadElement wrapHeadElement(raw) {
1045 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new HeadElementWrappingImplementation._wrap(raw); 1566 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new HeadElementWrappingImplementation._wrap(raw);
1046 } 1567 }
1047 1568
1048 static HeadingElement wrapHeadingElement(raw) { 1569 static HeadingElement wrapHeadingElement(raw) {
1049 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new HeadingElementWrappingImplementation._wrap(raw); 1570 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new HeadingElementWrappingImplementation._wrap(raw);
1050 } 1571 }
1051 1572
1573 static HighPass2FilterNode wrapHighPass2FilterNode(raw) {
1574 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new HighPass2FilterNodeWrappingImplementation._wrap(raw);
1575 }
1576
1052 static History wrapHistory(raw) { 1577 static History wrapHistory(raw) {
1053 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new HistoryWrappingImplementation._wrap(raw); 1578 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new HistoryWrappingImplementation._wrap(raw);
1054 } 1579 }
1055 1580
1056 static IDBAny wrapIDBAny(raw) { 1581 static IDBAny wrapIDBAny(raw) {
1057 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new IDBAnyWrappingImplementation._wrap(raw); 1582 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new IDBAnyWrappingImplementation._wrap(raw);
1058 } 1583 }
1059 1584
1060 static IDBCursor wrapIDBCursor(raw) { 1585 static IDBCursor wrapIDBCursor(raw) {
1061 if (raw === null) { return null; } 1586 if (raw === null) { return null; }
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
1166 } 1691 }
1167 1692
1168 static Int32Array wrapInt32Array(raw) { 1693 static Int32Array wrapInt32Array(raw) {
1169 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new Int32ArrayWrappingImplementation._wrap(raw); 1694 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new Int32ArrayWrappingImplementation._wrap(raw);
1170 } 1695 }
1171 1696
1172 static Int8Array wrapInt8Array(raw) { 1697 static Int8Array wrapInt8Array(raw) {
1173 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new Int8ArrayWrappingImplementation._wrap(raw); 1698 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new Int8ArrayWrappingImplementation._wrap(raw);
1174 } 1699 }
1175 1700
1701 static JavaScriptAudioNode wrapJavaScriptAudioNode(raw) {
1702 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new JavaScriptAudioNodeWrappingImplementation._wrap(raw);
1703 }
1704
1176 static KeyboardEvent wrapKeyboardEvent(raw) { 1705 static KeyboardEvent wrapKeyboardEvent(raw) {
1177 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new KeyboardEventWrappingImplementation._wrap(raw); 1706 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new KeyboardEventWrappingImplementation._wrap(raw);
1178 } 1707 }
1179 1708
1180 static KeygenElement wrapKeygenElement(raw) { 1709 static KeygenElement wrapKeygenElement(raw) {
1181 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new KeygenElementWrappingImplementation._wrap(raw); 1710 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new KeygenElementWrappingImplementation._wrap(raw);
1182 } 1711 }
1183 1712
1184 static LIElement wrapLIElement(raw) { 1713 static LIElement wrapLIElement(raw) {
1185 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new LIElementWrappingImplementation._wrap(raw); 1714 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new LIElementWrappingImplementation._wrap(raw);
1186 } 1715 }
1187 1716
1188 static LabelElement wrapLabelElement(raw) { 1717 static LabelElement wrapLabelElement(raw) {
1189 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new LabelElementWrappingImplementation._wrap(raw); 1718 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new LabelElementWrappingImplementation._wrap(raw);
1190 } 1719 }
1191 1720
1192 static LegendElement wrapLegendElement(raw) { 1721 static LegendElement wrapLegendElement(raw) {
1193 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new LegendElementWrappingImplementation._wrap(raw); 1722 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new LegendElementWrappingImplementation._wrap(raw);
1194 } 1723 }
1195 1724
1196 static LinkElement wrapLinkElement(raw) { 1725 static LinkElement wrapLinkElement(raw) {
1197 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new LinkElementWrappingImplementation._wrap(raw); 1726 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new LinkElementWrappingImplementation._wrap(raw);
1198 } 1727 }
1199 1728
1200 static LocalMediaStream wrapLocalMediaStream(raw) {
1201 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new LocalMediaStreamWrappingImplementation._wrap(raw);
1202 }
1203
1204 static Location wrapLocation(raw) { 1729 static Location wrapLocation(raw) {
1205 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new LocationWrappingImplementation._wrap(raw); 1730 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new LocationWrappingImplementation._wrap(raw);
1206 } 1731 }
1207 1732
1208 static LoseContext wrapLoseContext(raw) { 1733 static LoseContext wrapLoseContext(raw) {
1209 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new LoseContextWrappingImplementation._wrap(raw); 1734 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new LoseContextWrappingImplementation._wrap(raw);
1210 } 1735 }
1211 1736
1737 static LowPass2FilterNode wrapLowPass2FilterNode(raw) {
1738 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new LowPass2FilterNodeWrappingImplementation._wrap(raw);
1739 }
1740
1212 static MapElement wrapMapElement(raw) { 1741 static MapElement wrapMapElement(raw) {
1213 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MapElementWrappingImplementation._wrap(raw); 1742 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MapElementWrappingImplementation._wrap(raw);
1214 } 1743 }
1215 1744
1216 static MarqueeElement wrapMarqueeElement(raw) { 1745 static MarqueeElement wrapMarqueeElement(raw) {
1217 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MarqueeElementWrappingImplementation._wrap(raw); 1746 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MarqueeElementWrappingImplementation._wrap(raw);
1218 } 1747 }
1219 1748
1220 static MediaElement wrapMediaElement(raw) { 1749 static MediaElement wrapMediaElement(raw) {
1221 if (raw === null) { return null; } 1750 if (raw === null) { return null; }
1222 if (raw.dartObjectLocalStorage !== null) { 1751 if (raw.dartObjectLocalStorage !== null) {
1223 return raw.dartObjectLocalStorage; 1752 return raw.dartObjectLocalStorage;
1224 } 1753 }
1225 switch (raw.typeName) { 1754 switch (raw.typeName) {
1226 case "HTMLAudioElement": 1755 case "HTMLAudioElement":
1227 return new AudioElementWrappingImplementation._wrap(raw); 1756 return new AudioElementWrappingImplementation._wrap(raw);
1228 case "HTMLMediaElement": 1757 case "HTMLMediaElement":
1229 return new MediaElementWrappingImplementation._wrap(raw); 1758 return new MediaElementWrappingImplementation._wrap(raw);
1230 case "HTMLVideoElement": 1759 case "HTMLVideoElement":
1231 return new VideoElementWrappingImplementation._wrap(raw); 1760 return new VideoElementWrappingImplementation._wrap(raw);
1232 default: 1761 default:
1233 throw new UnsupportedOperationException("Unknown type:" + raw.toString() ); 1762 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
1234 } 1763 }
1235 } 1764 }
1236 1765
1766 static MediaElementAudioSourceNode wrapMediaElementAudioSourceNode(raw) {
1767 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MediaElementAudioSourceNodeWrappingImplementation._wrap( raw);
1768 }
1769
1237 static MediaError wrapMediaError(raw) { 1770 static MediaError wrapMediaError(raw) {
1238 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MediaErrorWrappingImplementation._wrap(raw); 1771 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MediaErrorWrappingImplementation._wrap(raw);
1239 } 1772 }
1240 1773
1241 static MediaList wrapMediaList(raw) { 1774 static MediaList wrapMediaList(raw) {
1242 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MediaListWrappingImplementation._wrap(raw); 1775 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MediaListWrappingImplementation._wrap(raw);
1243 } 1776 }
1244 1777
1245 static MediaQueryList wrapMediaQueryList(raw) { 1778 static MediaQueryList wrapMediaQueryList(raw) {
1246 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MediaQueryListWrappingImplementation._wrap(raw); 1779 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MediaQueryListWrappingImplementation._wrap(raw);
1247 } 1780 }
1248 1781
1249 static MediaQueryListListener wrapMediaQueryListListener(raw) { 1782 static MediaQueryListListener wrapMediaQueryListListener(raw) {
1250 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MediaQueryListListenerWrappingImplementation._wrap(raw); 1783 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MediaQueryListListenerWrappingImplementation._wrap(raw);
1251 } 1784 }
1252 1785
1253 static MediaStream wrapMediaStream(raw) {
1254 if (raw === null) { return null; }
1255 if (raw.dartObjectLocalStorage !== null) {
1256 return raw.dartObjectLocalStorage;
1257 }
1258 switch (raw.typeName) {
1259 case "LocalMediaStream":
1260 return new LocalMediaStreamWrappingImplementation._wrap(raw);
1261 case "MediaStream":
1262 return new MediaStreamWrappingImplementation._wrap(raw);
1263 default:
1264 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
1265 }
1266 }
1267
1268 static MediaStreamList wrapMediaStreamList(raw) {
1269 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MediaStreamListWrappingImplementation._wrap(raw);
1270 }
1271
1272 static MediaStreamTrack wrapMediaStreamTrack(raw) {
1273 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MediaStreamTrackWrappingImplementation._wrap(raw);
1274 }
1275
1276 static MediaStreamTrackList wrapMediaStreamTrackList(raw) {
1277 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MediaStreamTrackListWrappingImplementation._wrap(raw);
1278 }
1279
1280 static MenuElement wrapMenuElement(raw) { 1786 static MenuElement wrapMenuElement(raw) {
1281 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MenuElementWrappingImplementation._wrap(raw); 1787 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MenuElementWrappingImplementation._wrap(raw);
1282 } 1788 }
1283 1789
1284 static MessageChannel wrapMessageChannel(raw) { 1790 static MessageChannel wrapMessageChannel(raw) {
1285 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MessageChannelWrappingImplementation._wrap(raw); 1791 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MessageChannelWrappingImplementation._wrap(raw);
1286 } 1792 }
1287 1793
1288 static MessageEvent wrapMessageEvent(raw) { 1794 static MessageEvent wrapMessageEvent(raw) {
1289 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MessageEventWrappingImplementation._wrap(raw); 1795 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MessageEventWrappingImplementation._wrap(raw);
1290 } 1796 }
1291 1797
1292 static MessagePort wrapMessagePort(raw) { 1798 static MessagePort wrapMessagePort(raw) {
1293 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MessagePortWrappingImplementation._wrap(raw); 1799 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MessagePortWrappingImplementation._wrap(raw);
1294 } 1800 }
1295 1801
1296 static MetaElement wrapMetaElement(raw) { 1802 static MetaElement wrapMetaElement(raw) {
1297 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MetaElementWrappingImplementation._wrap(raw); 1803 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MetaElementWrappingImplementation._wrap(raw);
1298 } 1804 }
1299 1805
1300 static Metadata wrapMetadata(raw) { 1806 static Metadata wrapMetadata(raw) {
1301 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MetadataWrappingImplementation._wrap(raw); 1807 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MetadataWrappingImplementation._wrap(raw);
1302 } 1808 }
1303 1809
1304 static MetadataCallback wrapMetadataCallback(raw) { 1810 // Skipped MetadataCallback
1305 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MetadataCallbackWrappingImplementation._wrap(raw);
1306 }
1307
1308 static MeterElement wrapMeterElement(raw) { 1811 static MeterElement wrapMeterElement(raw) {
1309 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MeterElementWrappingImplementation._wrap(raw); 1812 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MeterElementWrappingImplementation._wrap(raw);
1310 } 1813 }
1311 1814
1312 static ModElement wrapModElement(raw) { 1815 static ModElement wrapModElement(raw) {
1313 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ModElementWrappingImplementation._wrap(raw); 1816 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ModElementWrappingImplementation._wrap(raw);
1314 } 1817 }
1315 1818
1316 static MouseEvent wrapMouseEvent(raw) { 1819 static MouseEvent wrapMouseEvent(raw) {
1317 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MouseEventWrappingImplementation._wrap(raw); 1820 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MouseEventWrappingImplementation._wrap(raw);
1318 } 1821 }
1319 1822
1823 static MutationCallback wrapMutationCallback(raw) {
1824 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MutationCallbackWrappingImplementation._wrap(raw);
1825 }
1826
1320 static MutationEvent wrapMutationEvent(raw) { 1827 static MutationEvent wrapMutationEvent(raw) {
1321 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MutationEventWrappingImplementation._wrap(raw); 1828 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MutationEventWrappingImplementation._wrap(raw);
1322 } 1829 }
1323 1830
1324 static MutationRecord wrapMutationRecord(raw) { 1831 static MutationRecord wrapMutationRecord(raw) {
1325 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MutationRecordWrappingImplementation._wrap(raw); 1832 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new MutationRecordWrappingImplementation._wrap(raw);
1326 } 1833 }
1327 1834
1328 static Navigator wrapNavigator(raw) { 1835 static Navigator wrapNavigator(raw) {
1329 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new NavigatorWrappingImplementation._wrap(raw); 1836 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new NavigatorWrappingImplementation._wrap(raw);
1330 } 1837 }
1331 1838
1332 static NavigatorUserMediaError wrapNavigatorUserMediaError(raw) { 1839 static NavigatorUserMediaError wrapNavigatorUserMediaError(raw) {
1333 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new NavigatorUserMediaErrorWrappingImplementation._wrap(raw) ; 1840 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new NavigatorUserMediaErrorWrappingImplementation._wrap(raw) ;
1334 } 1841 }
1335 1842
1336 static NavigatorUserMediaErrorCallback wrapNavigatorUserMediaErrorCallback(raw ) { 1843 // Skipped NavigatorUserMediaErrorCallback
1337 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new NavigatorUserMediaErrorCallbackWrappingImplementation._w rap(raw);
1338 }
1339
1340 static NavigatorUserMediaSuccessCallback wrapNavigatorUserMediaSuccessCallback (raw) { 1844 static NavigatorUserMediaSuccessCallback wrapNavigatorUserMediaSuccessCallback (raw) {
1341 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new NavigatorUserMediaSuccessCallbackWrappingImplementation. _wrap(raw); 1845 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new NavigatorUserMediaSuccessCallbackWrappingImplementation. _wrap(raw);
1342 } 1846 }
1343 1847
1344 static Node wrapNode(raw) { 1848 static Node wrapNode(raw) {
1345 if (raw === null) { return null; } 1849 if (raw === null) { return null; }
1346 if (raw.dartObjectLocalStorage !== null) { 1850 if (raw.dartObjectLocalStorage !== null) {
1347 return raw.dartObjectLocalStorage; 1851 return raw.dartObjectLocalStorage;
1348 } 1852 }
1349 switch (raw.typeName) { 1853 switch (raw.typeName) {
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
1460 case "HTMLParamElement": 1964 case "HTMLParamElement":
1461 return new ParamElementWrappingImplementation._wrap(raw); 1965 return new ParamElementWrappingImplementation._wrap(raw);
1462 case "HTMLPreElement": 1966 case "HTMLPreElement":
1463 return new PreElementWrappingImplementation._wrap(raw); 1967 return new PreElementWrappingImplementation._wrap(raw);
1464 case "ProcessingInstruction": 1968 case "ProcessingInstruction":
1465 return new ProcessingInstructionWrappingImplementation._wrap(raw); 1969 return new ProcessingInstructionWrappingImplementation._wrap(raw);
1466 case "HTMLProgressElement": 1970 case "HTMLProgressElement":
1467 return new ProgressElementWrappingImplementation._wrap(raw); 1971 return new ProgressElementWrappingImplementation._wrap(raw);
1468 case "HTMLQuoteElement": 1972 case "HTMLQuoteElement":
1469 return new QuoteElementWrappingImplementation._wrap(raw); 1973 return new QuoteElementWrappingImplementation._wrap(raw);
1974 case "SVGAElement":
1975 return new SVGAElementWrappingImplementation._wrap(raw);
1976 case "SVGAltGlyphDefElement":
1977 return new SVGAltGlyphDefElementWrappingImplementation._wrap(raw);
1978 case "SVGAltGlyphElement":
1979 return new SVGAltGlyphElementWrappingImplementation._wrap(raw);
1980 case "SVGAltGlyphItemElement":
1981 return new SVGAltGlyphItemElementWrappingImplementation._wrap(raw);
1982 case "SVGAnimateColorElement":
1983 return new SVGAnimateColorElementWrappingImplementation._wrap(raw);
1984 case "SVGAnimateElement":
1985 return new SVGAnimateElementWrappingImplementation._wrap(raw);
1986 case "SVGAnimateMotionElement":
1987 return new SVGAnimateMotionElementWrappingImplementation._wrap(raw);
1988 case "SVGAnimateTransformElement":
1989 return new SVGAnimateTransformElementWrappingImplementation._wrap(raw);
1990 case "SVGAnimationElement":
1991 return new SVGAnimationElementWrappingImplementation._wrap(raw);
1992 case "SVGCircleElement":
1993 return new SVGCircleElementWrappingImplementation._wrap(raw);
1994 case "SVGClipPathElement":
1995 return new SVGClipPathElementWrappingImplementation._wrap(raw);
1996 case "SVGComponentTransferFunctionElement":
1997 return new SVGComponentTransferFunctionElementWrappingImplementation._wr ap(raw);
1998 case "SVGCursorElement":
1999 return new SVGCursorElementWrappingImplementation._wrap(raw);
2000 case "SVGDefsElement":
2001 return new SVGDefsElementWrappingImplementation._wrap(raw);
2002 case "SVGDescElement":
2003 return new SVGDescElementWrappingImplementation._wrap(raw);
2004 case "SVGDocument":
2005 return new SVGDocumentWrappingImplementation._wrap(raw);
2006 case "SVGElement":
2007 return new SVGElementWrappingImplementation._wrap(raw);
2008 case "SVGEllipseElement":
2009 return new SVGEllipseElementWrappingImplementation._wrap(raw);
2010 case "SVGFEBlendElement":
2011 return new SVGFEBlendElementWrappingImplementation._wrap(raw);
2012 case "SVGFEColorMatrixElement":
2013 return new SVGFEColorMatrixElementWrappingImplementation._wrap(raw);
2014 case "SVGFEComponentTransferElement":
2015 return new SVGFEComponentTransferElementWrappingImplementation._wrap(raw );
2016 /* Skipping SVGFECompositeElement*/
2017 case "SVGFEConvolveMatrixElement":
2018 return new SVGFEConvolveMatrixElementWrappingImplementation._wrap(raw);
2019 case "SVGFEDiffuseLightingElement":
2020 return new SVGFEDiffuseLightingElementWrappingImplementation._wrap(raw);
2021 case "SVGFEDisplacementMapElement":
2022 return new SVGFEDisplacementMapElementWrappingImplementation._wrap(raw);
2023 case "SVGFEDistantLightElement":
2024 return new SVGFEDistantLightElementWrappingImplementation._wrap(raw);
2025 case "SVGFEDropShadowElement":
2026 return new SVGFEDropShadowElementWrappingImplementation._wrap(raw);
2027 case "SVGFEFloodElement":
2028 return new SVGFEFloodElementWrappingImplementation._wrap(raw);
2029 case "SVGFEFuncAElement":
2030 return new SVGFEFuncAElementWrappingImplementation._wrap(raw);
2031 case "SVGFEFuncBElement":
2032 return new SVGFEFuncBElementWrappingImplementation._wrap(raw);
2033 case "SVGFEFuncGElement":
2034 return new SVGFEFuncGElementWrappingImplementation._wrap(raw);
2035 case "SVGFEFuncRElement":
2036 return new SVGFEFuncRElementWrappingImplementation._wrap(raw);
2037 case "SVGFEGaussianBlurElement":
2038 return new SVGFEGaussianBlurElementWrappingImplementation._wrap(raw);
2039 case "SVGFEImageElement":
2040 return new SVGFEImageElementWrappingImplementation._wrap(raw);
2041 case "SVGFEMergeElement":
2042 return new SVGFEMergeElementWrappingImplementation._wrap(raw);
2043 case "SVGFEMergeNodeElement":
2044 return new SVGFEMergeNodeElementWrappingImplementation._wrap(raw);
2045 /* Skipping SVGFEMorphologyElement*/
2046 case "SVGFEOffsetElement":
2047 return new SVGFEOffsetElementWrappingImplementation._wrap(raw);
2048 case "SVGFEPointLightElement":
2049 return new SVGFEPointLightElementWrappingImplementation._wrap(raw);
2050 case "SVGFESpecularLightingElement":
2051 return new SVGFESpecularLightingElementWrappingImplementation._wrap(raw) ;
2052 case "SVGFESpotLightElement":
2053 return new SVGFESpotLightElementWrappingImplementation._wrap(raw);
2054 case "SVGFETileElement":
2055 return new SVGFETileElementWrappingImplementation._wrap(raw);
2056 case "SVGFETurbulenceElement":
2057 return new SVGFETurbulenceElementWrappingImplementation._wrap(raw);
2058 case "SVGFilterElement":
2059 return new SVGFilterElementWrappingImplementation._wrap(raw);
2060 case "SVGFontElement":
2061 return new SVGFontElementWrappingImplementation._wrap(raw);
2062 case "SVGFontFaceElement":
2063 return new SVGFontFaceElementWrappingImplementation._wrap(raw);
2064 case "SVGFontFaceFormatElement":
2065 return new SVGFontFaceFormatElementWrappingImplementation._wrap(raw);
2066 case "SVGFontFaceNameElement":
2067 return new SVGFontFaceNameElementWrappingImplementation._wrap(raw);
2068 case "SVGFontFaceSrcElement":
2069 return new SVGFontFaceSrcElementWrappingImplementation._wrap(raw);
2070 case "SVGFontFaceUriElement":
2071 return new SVGFontFaceUriElementWrappingImplementation._wrap(raw);
2072 case "SVGForeignObjectElement":
2073 return new SVGForeignObjectElementWrappingImplementation._wrap(raw);
2074 case "SVGGElement":
2075 return new SVGGElementWrappingImplementation._wrap(raw);
2076 case "SVGGlyphElement":
2077 return new SVGGlyphElementWrappingImplementation._wrap(raw);
2078 case "SVGGlyphRefElement":
2079 return new SVGGlyphRefElementWrappingImplementation._wrap(raw);
2080 case "SVGGradientElement":
2081 return new SVGGradientElementWrappingImplementation._wrap(raw);
2082 case "SVGHKernElement":
2083 return new SVGHKernElementWrappingImplementation._wrap(raw);
2084 case "SVGImageElement":
2085 return new SVGImageElementWrappingImplementation._wrap(raw);
2086 case "SVGLineElement":
2087 return new SVGLineElementWrappingImplementation._wrap(raw);
2088 case "SVGLinearGradientElement":
2089 return new SVGLinearGradientElementWrappingImplementation._wrap(raw);
2090 case "SVGMPathElement":
2091 return new SVGMPathElementWrappingImplementation._wrap(raw);
2092 case "SVGMarkerElement":
2093 return new SVGMarkerElementWrappingImplementation._wrap(raw);
2094 case "SVGMaskElement":
2095 return new SVGMaskElementWrappingImplementation._wrap(raw);
2096 case "SVGMetadataElement":
2097 return new SVGMetadataElementWrappingImplementation._wrap(raw);
2098 case "SVGMissingGlyphElement":
2099 return new SVGMissingGlyphElementWrappingImplementation._wrap(raw);
2100 case "SVGPathElement":
2101 return new SVGPathElementWrappingImplementation._wrap(raw);
2102 case "SVGPatternElement":
2103 return new SVGPatternElementWrappingImplementation._wrap(raw);
2104 case "SVGPolygonElement":
2105 return new SVGPolygonElementWrappingImplementation._wrap(raw);
2106 case "SVGPolylineElement":
2107 return new SVGPolylineElementWrappingImplementation._wrap(raw);
2108 case "SVGRadialGradientElement":
2109 return new SVGRadialGradientElementWrappingImplementation._wrap(raw);
2110 case "SVGRectElement":
2111 return new SVGRectElementWrappingImplementation._wrap(raw);
2112 case "SVGSVGElement":
2113 return new SVGSVGElementWrappingImplementation._wrap(raw);
2114 case "SVGScriptElement":
2115 return new SVGScriptElementWrappingImplementation._wrap(raw);
2116 case "SVGSetElement":
2117 return new SVGSetElementWrappingImplementation._wrap(raw);
2118 case "SVGStopElement":
2119 return new SVGStopElementWrappingImplementation._wrap(raw);
2120 case "SVGStyleElement":
2121 return new SVGStyleElementWrappingImplementation._wrap(raw);
2122 case "SVGSwitchElement":
2123 return new SVGSwitchElementWrappingImplementation._wrap(raw);
2124 case "SVGSymbolElement":
2125 return new SVGSymbolElementWrappingImplementation._wrap(raw);
2126 case "SVGTRefElement":
2127 return new SVGTRefElementWrappingImplementation._wrap(raw);
2128 case "SVGTSpanElement":
2129 return new SVGTSpanElementWrappingImplementation._wrap(raw);
2130 case "SVGTextContentElement":
2131 return new SVGTextContentElementWrappingImplementation._wrap(raw);
2132 case "SVGTextElement":
2133 return new SVGTextElementWrappingImplementation._wrap(raw);
2134 case "SVGTextPathElement":
2135 return new SVGTextPathElementWrappingImplementation._wrap(raw);
2136 case "SVGTextPositioningElement":
2137 return new SVGTextPositioningElementWrappingImplementation._wrap(raw);
2138 case "SVGTitleElement":
2139 return new SVGTitleElementWrappingImplementation._wrap(raw);
2140 case "SVGUseElement":
2141 return new SVGUseElementWrappingImplementation._wrap(raw);
2142 case "SVGVKernElement":
2143 return new SVGVKernElementWrappingImplementation._wrap(raw);
2144 case "SVGViewElement":
2145 return new SVGViewElementWrappingImplementation._wrap(raw);
1470 case "HTMLScriptElement": 2146 case "HTMLScriptElement":
1471 return new ScriptElementWrappingImplementation._wrap(raw); 2147 return new ScriptElementWrappingImplementation._wrap(raw);
1472 case "HTMLSelectElement": 2148 case "HTMLSelectElement":
1473 return new SelectElementWrappingImplementation._wrap(raw); 2149 return new SelectElementWrappingImplementation._wrap(raw);
1474 case "HTMLSourceElement": 2150 case "HTMLSourceElement":
1475 return new SourceElementWrappingImplementation._wrap(raw); 2151 return new SourceElementWrappingImplementation._wrap(raw);
1476 case "HTMLSpanElement": 2152 case "HTMLSpanElement":
1477 return new SpanElementWrappingImplementation._wrap(raw); 2153 return new SpanElementWrappingImplementation._wrap(raw);
1478 case "HTMLStyleElement": 2154 case "HTMLStyleElement":
1479 return new StyleElementWrappingImplementation._wrap(raw); 2155 return new StyleElementWrappingImplementation._wrap(raw);
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
1533 } 2209 }
1534 2210
1535 static OListElement wrapOListElement(raw) { 2211 static OListElement wrapOListElement(raw) {
1536 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new OListElementWrappingImplementation._wrap(raw); 2212 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new OListElementWrappingImplementation._wrap(raw);
1537 } 2213 }
1538 2214
1539 static ObjectElement wrapObjectElement(raw) { 2215 static ObjectElement wrapObjectElement(raw) {
1540 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ObjectElementWrappingImplementation._wrap(raw); 2216 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ObjectElementWrappingImplementation._wrap(raw);
1541 } 2217 }
1542 2218
2219 static OfflineAudioCompletionEvent wrapOfflineAudioCompletionEvent(raw) {
2220 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new OfflineAudioCompletionEventWrappingImplementation._wrap( raw);
2221 }
2222
1543 static OperationNotAllowedException wrapOperationNotAllowedException(raw) { 2223 static OperationNotAllowedException wrapOperationNotAllowedException(raw) {
1544 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new OperationNotAllowedExceptionWrappingImplementation._wrap (raw); 2224 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new OperationNotAllowedExceptionWrappingImplementation._wrap (raw);
1545 } 2225 }
1546 2226
1547 static OptGroupElement wrapOptGroupElement(raw) { 2227 static OptGroupElement wrapOptGroupElement(raw) {
1548 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new OptGroupElementWrappingImplementation._wrap(raw); 2228 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new OptGroupElementWrappingImplementation._wrap(raw);
1549 } 2229 }
1550 2230
1551 static OptionElement wrapOptionElement(raw) { 2231 static OptionElement wrapOptionElement(raw) {
1552 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new OptionElementWrappingImplementation._wrap(raw); 2232 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new OptionElementWrappingImplementation._wrap(raw);
(...skipping 20 matching lines...) Expand all
1573 } 2253 }
1574 2254
1575 static Point wrapPoint(raw) { 2255 static Point wrapPoint(raw) {
1576 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new PointWrappingImplementation._wrap(raw); 2256 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new PointWrappingImplementation._wrap(raw);
1577 } 2257 }
1578 2258
1579 static PopStateEvent wrapPopStateEvent(raw) { 2259 static PopStateEvent wrapPopStateEvent(raw) {
1580 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new PopStateEventWrappingImplementation._wrap(raw); 2260 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new PopStateEventWrappingImplementation._wrap(raw);
1581 } 2261 }
1582 2262
1583 static PositionCallback wrapPositionCallback(raw) { 2263 // Skipped PositionCallback
1584 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new PositionCallbackWrappingImplementation._wrap(raw);
1585 }
1586
1587 static PositionError wrapPositionError(raw) { 2264 static PositionError wrapPositionError(raw) {
1588 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new PositionErrorWrappingImplementation._wrap(raw); 2265 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new PositionErrorWrappingImplementation._wrap(raw);
1589 } 2266 }
1590 2267
1591 static PositionErrorCallback wrapPositionErrorCallback(raw) { 2268 // Skipped PositionErrorCallback
1592 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new PositionErrorCallbackWrappingImplementation._wrap(raw);
1593 }
1594
1595 static PreElement wrapPreElement(raw) { 2269 static PreElement wrapPreElement(raw) {
1596 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new PreElementWrappingImplementation._wrap(raw); 2270 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new PreElementWrappingImplementation._wrap(raw);
1597 } 2271 }
1598 2272
1599 static ProcessingInstruction wrapProcessingInstruction(raw) { 2273 static ProcessingInstruction wrapProcessingInstruction(raw) {
1600 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ProcessingInstructionWrappingImplementation._wrap(raw); 2274 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ProcessingInstructionWrappingImplementation._wrap(raw);
1601 } 2275 }
1602 2276
1603 static ProgressElement wrapProgressElement(raw) { 2277 static ProgressElement wrapProgressElement(raw) {
1604 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ProgressElementWrappingImplementation._wrap(raw); 2278 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ProgressElementWrappingImplementation._wrap(raw);
(...skipping 23 matching lines...) Expand all
1628 } 2302 }
1629 2303
1630 static Range wrapRange(raw) { 2304 static Range wrapRange(raw) {
1631 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new RangeWrappingImplementation._wrap(raw); 2305 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new RangeWrappingImplementation._wrap(raw);
1632 } 2306 }
1633 2307
1634 static RangeException wrapRangeException(raw) { 2308 static RangeException wrapRangeException(raw) {
1635 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new RangeExceptionWrappingImplementation._wrap(raw); 2309 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new RangeExceptionWrappingImplementation._wrap(raw);
1636 } 2310 }
1637 2311
2312 static RealtimeAnalyserNode wrapRealtimeAnalyserNode(raw) {
2313 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new RealtimeAnalyserNodeWrappingImplementation._wrap(raw);
2314 }
2315
1638 static Rect wrapRect(raw) { 2316 static Rect wrapRect(raw) {
1639 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new RectWrappingImplementation._wrap(raw); 2317 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new RectWrappingImplementation._wrap(raw);
1640 } 2318 }
1641 2319
2320 // Skipped RequestAnimationFrameCallback
2321 // Skipped SQLStatementCallback
2322 // Skipped SQLStatementErrorCallback
2323 // Skipped SQLTransactionCallback
2324 // Skipped SQLTransactionErrorCallback
2325 // Skipped SQLTransactionSyncCallback
2326 static SVGAElement wrapSVGAElement(raw) {
2327 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGAElementWrappingImplementation._wrap(raw);
2328 }
2329
2330 static SVGAltGlyphDefElement wrapSVGAltGlyphDefElement(raw) {
2331 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGAltGlyphDefElementWrappingImplementation._wrap(raw);
2332 }
2333
2334 static SVGAltGlyphElement wrapSVGAltGlyphElement(raw) {
2335 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGAltGlyphElementWrappingImplementation._wrap(raw);
2336 }
2337
2338 static SVGAltGlyphItemElement wrapSVGAltGlyphItemElement(raw) {
2339 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGAltGlyphItemElementWrappingImplementation._wrap(raw);
2340 }
2341
2342 static SVGAngle wrapSVGAngle(raw) {
2343 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGAngleWrappingImplementation._wrap(raw);
2344 }
2345
2346 static SVGAnimateColorElement wrapSVGAnimateColorElement(raw) {
2347 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGAnimateColorElementWrappingImplementation._wrap(raw);
2348 }
2349
2350 static SVGAnimateElement wrapSVGAnimateElement(raw) {
2351 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGAnimateElementWrappingImplementation._wrap(raw);
2352 }
2353
2354 static SVGAnimateMotionElement wrapSVGAnimateMotionElement(raw) {
2355 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGAnimateMotionElementWrappingImplementation._wrap(raw) ;
2356 }
2357
2358 static SVGAnimateTransformElement wrapSVGAnimateTransformElement(raw) {
2359 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGAnimateTransformElementWrappingImplementation._wrap(r aw);
2360 }
2361
2362 static SVGAnimatedAngle wrapSVGAnimatedAngle(raw) {
2363 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGAnimatedAngleWrappingImplementation._wrap(raw);
2364 }
2365
2366 static SVGAnimatedBoolean wrapSVGAnimatedBoolean(raw) {
2367 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGAnimatedBooleanWrappingImplementation._wrap(raw);
2368 }
2369
2370 static SVGAnimatedEnumeration wrapSVGAnimatedEnumeration(raw) {
2371 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGAnimatedEnumerationWrappingImplementation._wrap(raw);
2372 }
2373
2374 static SVGAnimatedInteger wrapSVGAnimatedInteger(raw) {
2375 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGAnimatedIntegerWrappingImplementation._wrap(raw);
2376 }
2377
2378 static SVGAnimatedLength wrapSVGAnimatedLength(raw) {
2379 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGAnimatedLengthWrappingImplementation._wrap(raw);
2380 }
2381
2382 static SVGAnimatedLengthList wrapSVGAnimatedLengthList(raw) {
2383 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGAnimatedLengthListWrappingImplementation._wrap(raw);
2384 }
2385
2386 static SVGAnimatedNumber wrapSVGAnimatedNumber(raw) {
2387 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGAnimatedNumberWrappingImplementation._wrap(raw);
2388 }
2389
2390 static SVGAnimatedNumberList wrapSVGAnimatedNumberList(raw) {
2391 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGAnimatedNumberListWrappingImplementation._wrap(raw);
2392 }
2393
2394 static SVGAnimatedPreserveAspectRatio wrapSVGAnimatedPreserveAspectRatio(raw) {
2395 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGAnimatedPreserveAspectRatioWrappingImplementation._wr ap(raw);
2396 }
2397
2398 static SVGAnimatedRect wrapSVGAnimatedRect(raw) {
2399 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGAnimatedRectWrappingImplementation._wrap(raw);
2400 }
2401
2402 static SVGAnimatedString wrapSVGAnimatedString(raw) {
2403 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGAnimatedStringWrappingImplementation._wrap(raw);
2404 }
2405
2406 static SVGAnimatedTransformList wrapSVGAnimatedTransformList(raw) {
2407 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGAnimatedTransformListWrappingImplementation._wrap(raw );
2408 }
2409
2410 static SVGAnimationElement wrapSVGAnimationElement(raw) {
2411 if (raw === null) { return null; }
2412 if (raw.dartObjectLocalStorage !== null) {
2413 return raw.dartObjectLocalStorage;
2414 }
2415 switch (raw.typeName) {
2416 case "SVGAnimateColorElement":
2417 return new SVGAnimateColorElementWrappingImplementation._wrap(raw);
2418 case "SVGAnimateElement":
2419 return new SVGAnimateElementWrappingImplementation._wrap(raw);
2420 case "SVGAnimateMotionElement":
2421 return new SVGAnimateMotionElementWrappingImplementation._wrap(raw);
2422 case "SVGAnimateTransformElement":
2423 return new SVGAnimateTransformElementWrappingImplementation._wrap(raw);
2424 case "SVGAnimationElement":
2425 return new SVGAnimationElementWrappingImplementation._wrap(raw);
2426 case "SVGSetElement":
2427 return new SVGSetElementWrappingImplementation._wrap(raw);
2428 default:
2429 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
2430 }
2431 }
2432
2433 static SVGCircleElement wrapSVGCircleElement(raw) {
2434 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGCircleElementWrappingImplementation._wrap(raw);
2435 }
2436
2437 static SVGClipPathElement wrapSVGClipPathElement(raw) {
2438 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGClipPathElementWrappingImplementation._wrap(raw);
2439 }
2440
2441 static SVGColor wrapSVGColor(raw) {
2442 if (raw === null) { return null; }
2443 if (raw.dartObjectLocalStorage !== null) {
2444 return raw.dartObjectLocalStorage;
2445 }
2446 switch (raw.typeName) {
2447 case "SVGColor":
2448 return new SVGColorWrappingImplementation._wrap(raw);
2449 case "SVGPaint":
2450 return new SVGPaintWrappingImplementation._wrap(raw);
2451 default:
2452 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
2453 }
2454 }
2455
2456 static SVGComponentTransferFunctionElement wrapSVGComponentTransferFunctionEle ment(raw) {
2457 if (raw === null) { return null; }
2458 if (raw.dartObjectLocalStorage !== null) {
2459 return raw.dartObjectLocalStorage;
2460 }
2461 switch (raw.typeName) {
2462 case "SVGComponentTransferFunctionElement":
2463 return new SVGComponentTransferFunctionElementWrappingImplementation._wr ap(raw);
2464 case "SVGFEFuncAElement":
2465 return new SVGFEFuncAElementWrappingImplementation._wrap(raw);
2466 case "SVGFEFuncBElement":
2467 return new SVGFEFuncBElementWrappingImplementation._wrap(raw);
2468 case "SVGFEFuncGElement":
2469 return new SVGFEFuncGElementWrappingImplementation._wrap(raw);
2470 case "SVGFEFuncRElement":
2471 return new SVGFEFuncRElementWrappingImplementation._wrap(raw);
2472 default:
2473 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
2474 }
2475 }
2476
2477 static SVGCursorElement wrapSVGCursorElement(raw) {
2478 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGCursorElementWrappingImplementation._wrap(raw);
2479 }
2480
2481 static SVGDefsElement wrapSVGDefsElement(raw) {
2482 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGDefsElementWrappingImplementation._wrap(raw);
2483 }
2484
2485 static SVGDescElement wrapSVGDescElement(raw) {
2486 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGDescElementWrappingImplementation._wrap(raw);
2487 }
2488
2489 static SVGDocument wrapSVGDocument(raw) {
2490 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGDocumentWrappingImplementation._wrap(raw);
2491 }
2492
2493 static SVGElement wrapSVGElement(raw) {
2494 if (raw === null) { return null; }
2495 if (raw.dartObjectLocalStorage !== null) {
2496 return raw.dartObjectLocalStorage;
2497 }
2498 switch (raw.typeName) {
2499 case "SVGAElement":
2500 return new SVGAElementWrappingImplementation._wrap(raw);
2501 case "SVGAltGlyphDefElement":
2502 return new SVGAltGlyphDefElementWrappingImplementation._wrap(raw);
2503 case "SVGAltGlyphElement":
2504 return new SVGAltGlyphElementWrappingImplementation._wrap(raw);
2505 case "SVGAltGlyphItemElement":
2506 return new SVGAltGlyphItemElementWrappingImplementation._wrap(raw);
2507 case "SVGAnimateColorElement":
2508 return new SVGAnimateColorElementWrappingImplementation._wrap(raw);
2509 case "SVGAnimateElement":
2510 return new SVGAnimateElementWrappingImplementation._wrap(raw);
2511 case "SVGAnimateMotionElement":
2512 return new SVGAnimateMotionElementWrappingImplementation._wrap(raw);
2513 case "SVGAnimateTransformElement":
2514 return new SVGAnimateTransformElementWrappingImplementation._wrap(raw);
2515 case "SVGAnimationElement":
2516 return new SVGAnimationElementWrappingImplementation._wrap(raw);
2517 case "SVGCircleElement":
2518 return new SVGCircleElementWrappingImplementation._wrap(raw);
2519 case "SVGClipPathElement":
2520 return new SVGClipPathElementWrappingImplementation._wrap(raw);
2521 case "SVGComponentTransferFunctionElement":
2522 return new SVGComponentTransferFunctionElementWrappingImplementation._wr ap(raw);
2523 case "SVGCursorElement":
2524 return new SVGCursorElementWrappingImplementation._wrap(raw);
2525 case "SVGDefsElement":
2526 return new SVGDefsElementWrappingImplementation._wrap(raw);
2527 case "SVGDescElement":
2528 return new SVGDescElementWrappingImplementation._wrap(raw);
2529 case "SVGElement":
2530 return new SVGElementWrappingImplementation._wrap(raw);
2531 case "SVGEllipseElement":
2532 return new SVGEllipseElementWrappingImplementation._wrap(raw);
2533 case "SVGFEBlendElement":
2534 return new SVGFEBlendElementWrappingImplementation._wrap(raw);
2535 case "SVGFEColorMatrixElement":
2536 return new SVGFEColorMatrixElementWrappingImplementation._wrap(raw);
2537 case "SVGFEComponentTransferElement":
2538 return new SVGFEComponentTransferElementWrappingImplementation._wrap(raw );
2539 /* Skipping SVGFECompositeElement*/
2540 case "SVGFEConvolveMatrixElement":
2541 return new SVGFEConvolveMatrixElementWrappingImplementation._wrap(raw);
2542 case "SVGFEDiffuseLightingElement":
2543 return new SVGFEDiffuseLightingElementWrappingImplementation._wrap(raw);
2544 case "SVGFEDisplacementMapElement":
2545 return new SVGFEDisplacementMapElementWrappingImplementation._wrap(raw);
2546 case "SVGFEDistantLightElement":
2547 return new SVGFEDistantLightElementWrappingImplementation._wrap(raw);
2548 case "SVGFEDropShadowElement":
2549 return new SVGFEDropShadowElementWrappingImplementation._wrap(raw);
2550 case "SVGFEFloodElement":
2551 return new SVGFEFloodElementWrappingImplementation._wrap(raw);
2552 case "SVGFEFuncAElement":
2553 return new SVGFEFuncAElementWrappingImplementation._wrap(raw);
2554 case "SVGFEFuncBElement":
2555 return new SVGFEFuncBElementWrappingImplementation._wrap(raw);
2556 case "SVGFEFuncGElement":
2557 return new SVGFEFuncGElementWrappingImplementation._wrap(raw);
2558 case "SVGFEFuncRElement":
2559 return new SVGFEFuncRElementWrappingImplementation._wrap(raw);
2560 case "SVGFEGaussianBlurElement":
2561 return new SVGFEGaussianBlurElementWrappingImplementation._wrap(raw);
2562 case "SVGFEImageElement":
2563 return new SVGFEImageElementWrappingImplementation._wrap(raw);
2564 case "SVGFEMergeElement":
2565 return new SVGFEMergeElementWrappingImplementation._wrap(raw);
2566 case "SVGFEMergeNodeElement":
2567 return new SVGFEMergeNodeElementWrappingImplementation._wrap(raw);
2568 /* Skipping SVGFEMorphologyElement*/
2569 case "SVGFEOffsetElement":
2570 return new SVGFEOffsetElementWrappingImplementation._wrap(raw);
2571 case "SVGFEPointLightElement":
2572 return new SVGFEPointLightElementWrappingImplementation._wrap(raw);
2573 case "SVGFESpecularLightingElement":
2574 return new SVGFESpecularLightingElementWrappingImplementation._wrap(raw) ;
2575 case "SVGFESpotLightElement":
2576 return new SVGFESpotLightElementWrappingImplementation._wrap(raw);
2577 case "SVGFETileElement":
2578 return new SVGFETileElementWrappingImplementation._wrap(raw);
2579 case "SVGFETurbulenceElement":
2580 return new SVGFETurbulenceElementWrappingImplementation._wrap(raw);
2581 case "SVGFilterElement":
2582 return new SVGFilterElementWrappingImplementation._wrap(raw);
2583 case "SVGFontElement":
2584 return new SVGFontElementWrappingImplementation._wrap(raw);
2585 case "SVGFontFaceElement":
2586 return new SVGFontFaceElementWrappingImplementation._wrap(raw);
2587 case "SVGFontFaceFormatElement":
2588 return new SVGFontFaceFormatElementWrappingImplementation._wrap(raw);
2589 case "SVGFontFaceNameElement":
2590 return new SVGFontFaceNameElementWrappingImplementation._wrap(raw);
2591 case "SVGFontFaceSrcElement":
2592 return new SVGFontFaceSrcElementWrappingImplementation._wrap(raw);
2593 case "SVGFontFaceUriElement":
2594 return new SVGFontFaceUriElementWrappingImplementation._wrap(raw);
2595 case "SVGForeignObjectElement":
2596 return new SVGForeignObjectElementWrappingImplementation._wrap(raw);
2597 case "SVGGElement":
2598 return new SVGGElementWrappingImplementation._wrap(raw);
2599 case "SVGGlyphElement":
2600 return new SVGGlyphElementWrappingImplementation._wrap(raw);
2601 case "SVGGlyphRefElement":
2602 return new SVGGlyphRefElementWrappingImplementation._wrap(raw);
2603 case "SVGGradientElement":
2604 return new SVGGradientElementWrappingImplementation._wrap(raw);
2605 case "SVGHKernElement":
2606 return new SVGHKernElementWrappingImplementation._wrap(raw);
2607 case "SVGImageElement":
2608 return new SVGImageElementWrappingImplementation._wrap(raw);
2609 case "SVGLineElement":
2610 return new SVGLineElementWrappingImplementation._wrap(raw);
2611 case "SVGLinearGradientElement":
2612 return new SVGLinearGradientElementWrappingImplementation._wrap(raw);
2613 case "SVGMPathElement":
2614 return new SVGMPathElementWrappingImplementation._wrap(raw);
2615 case "SVGMarkerElement":
2616 return new SVGMarkerElementWrappingImplementation._wrap(raw);
2617 case "SVGMaskElement":
2618 return new SVGMaskElementWrappingImplementation._wrap(raw);
2619 case "SVGMetadataElement":
2620 return new SVGMetadataElementWrappingImplementation._wrap(raw);
2621 case "SVGMissingGlyphElement":
2622 return new SVGMissingGlyphElementWrappingImplementation._wrap(raw);
2623 case "SVGPathElement":
2624 return new SVGPathElementWrappingImplementation._wrap(raw);
2625 case "SVGPatternElement":
2626 return new SVGPatternElementWrappingImplementation._wrap(raw);
2627 case "SVGPolygonElement":
2628 return new SVGPolygonElementWrappingImplementation._wrap(raw);
2629 case "SVGPolylineElement":
2630 return new SVGPolylineElementWrappingImplementation._wrap(raw);
2631 case "SVGRadialGradientElement":
2632 return new SVGRadialGradientElementWrappingImplementation._wrap(raw);
2633 case "SVGRectElement":
2634 return new SVGRectElementWrappingImplementation._wrap(raw);
2635 case "SVGSVGElement":
2636 return new SVGSVGElementWrappingImplementation._wrap(raw);
2637 case "SVGScriptElement":
2638 return new SVGScriptElementWrappingImplementation._wrap(raw);
2639 case "SVGSetElement":
2640 return new SVGSetElementWrappingImplementation._wrap(raw);
2641 case "SVGStopElement":
2642 return new SVGStopElementWrappingImplementation._wrap(raw);
2643 case "SVGStyleElement":
2644 return new SVGStyleElementWrappingImplementation._wrap(raw);
2645 case "SVGSwitchElement":
2646 return new SVGSwitchElementWrappingImplementation._wrap(raw);
2647 case "SVGSymbolElement":
2648 return new SVGSymbolElementWrappingImplementation._wrap(raw);
2649 case "SVGTRefElement":
2650 return new SVGTRefElementWrappingImplementation._wrap(raw);
2651 case "SVGTSpanElement":
2652 return new SVGTSpanElementWrappingImplementation._wrap(raw);
2653 case "SVGTextContentElement":
2654 return new SVGTextContentElementWrappingImplementation._wrap(raw);
2655 case "SVGTextElement":
2656 return new SVGTextElementWrappingImplementation._wrap(raw);
2657 case "SVGTextPathElement":
2658 return new SVGTextPathElementWrappingImplementation._wrap(raw);
2659 case "SVGTextPositioningElement":
2660 return new SVGTextPositioningElementWrappingImplementation._wrap(raw);
2661 case "SVGTitleElement":
2662 return new SVGTitleElementWrappingImplementation._wrap(raw);
2663 case "SVGUseElement":
2664 return new SVGUseElementWrappingImplementation._wrap(raw);
2665 case "SVGVKernElement":
2666 return new SVGVKernElementWrappingImplementation._wrap(raw);
2667 case "SVGViewElement":
2668 return new SVGViewElementWrappingImplementation._wrap(raw);
2669 default:
2670 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
2671 }
2672 }
2673
2674 static SVGElementInstance wrapSVGElementInstance(raw) {
2675 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGElementInstanceWrappingImplementation._wrap(raw);
2676 }
2677
2678 static SVGElementInstanceList wrapSVGElementInstanceList(raw) {
2679 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGElementInstanceListWrappingImplementation._wrap(raw);
2680 }
2681
2682 static SVGEllipseElement wrapSVGEllipseElement(raw) {
2683 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGEllipseElementWrappingImplementation._wrap(raw);
2684 }
2685
2686 static SVGException wrapSVGException(raw) {
2687 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGExceptionWrappingImplementation._wrap(raw);
2688 }
2689
2690 static SVGExternalResourcesRequired wrapSVGExternalResourcesRequired(raw) {
2691 if (raw === null) { return null; }
2692 if (raw.dartObjectLocalStorage !== null) {
2693 return raw.dartObjectLocalStorage;
2694 }
2695 switch (raw.typeName) {
2696 case "SVGAElement":
2697 return new SVGAElementWrappingImplementation._wrap(raw);
2698 case "SVGAltGlyphElement":
2699 return new SVGAltGlyphElementWrappingImplementation._wrap(raw);
2700 case "SVGAnimateColorElement":
2701 return new SVGAnimateColorElementWrappingImplementation._wrap(raw);
2702 case "SVGAnimateElement":
2703 return new SVGAnimateElementWrappingImplementation._wrap(raw);
2704 case "SVGAnimateMotionElement":
2705 return new SVGAnimateMotionElementWrappingImplementation._wrap(raw);
2706 case "SVGAnimateTransformElement":
2707 return new SVGAnimateTransformElementWrappingImplementation._wrap(raw);
2708 case "SVGAnimationElement":
2709 return new SVGAnimationElementWrappingImplementation._wrap(raw);
2710 case "SVGCircleElement":
2711 return new SVGCircleElementWrappingImplementation._wrap(raw);
2712 case "SVGClipPathElement":
2713 return new SVGClipPathElementWrappingImplementation._wrap(raw);
2714 case "SVGCursorElement":
2715 return new SVGCursorElementWrappingImplementation._wrap(raw);
2716 case "SVGDefsElement":
2717 return new SVGDefsElementWrappingImplementation._wrap(raw);
2718 case "SVGEllipseElement":
2719 return new SVGEllipseElementWrappingImplementation._wrap(raw);
2720 case "SVGExternalResourcesRequired":
2721 return new SVGExternalResourcesRequiredWrappingImplementation._wrap(raw) ;
2722 case "SVGFEImageElement":
2723 return new SVGFEImageElementWrappingImplementation._wrap(raw);
2724 case "SVGFilterElement":
2725 return new SVGFilterElementWrappingImplementation._wrap(raw);
2726 case "SVGForeignObjectElement":
2727 return new SVGForeignObjectElementWrappingImplementation._wrap(raw);
2728 case "SVGGElement":
2729 return new SVGGElementWrappingImplementation._wrap(raw);
2730 case "SVGGradientElement":
2731 return new SVGGradientElementWrappingImplementation._wrap(raw);
2732 case "SVGImageElement":
2733 return new SVGImageElementWrappingImplementation._wrap(raw);
2734 case "SVGLineElement":
2735 return new SVGLineElementWrappingImplementation._wrap(raw);
2736 case "SVGLinearGradientElement":
2737 return new SVGLinearGradientElementWrappingImplementation._wrap(raw);
2738 case "SVGMPathElement":
2739 return new SVGMPathElementWrappingImplementation._wrap(raw);
2740 case "SVGMarkerElement":
2741 return new SVGMarkerElementWrappingImplementation._wrap(raw);
2742 case "SVGMaskElement":
2743 return new SVGMaskElementWrappingImplementation._wrap(raw);
2744 case "SVGPathElement":
2745 return new SVGPathElementWrappingImplementation._wrap(raw);
2746 case "SVGPatternElement":
2747 return new SVGPatternElementWrappingImplementation._wrap(raw);
2748 case "SVGPolygonElement":
2749 return new SVGPolygonElementWrappingImplementation._wrap(raw);
2750 case "SVGPolylineElement":
2751 return new SVGPolylineElementWrappingImplementation._wrap(raw);
2752 case "SVGRadialGradientElement":
2753 return new SVGRadialGradientElementWrappingImplementation._wrap(raw);
2754 case "SVGRectElement":
2755 return new SVGRectElementWrappingImplementation._wrap(raw);
2756 case "SVGSVGElement":
2757 return new SVGSVGElementWrappingImplementation._wrap(raw);
2758 case "SVGScriptElement":
2759 return new SVGScriptElementWrappingImplementation._wrap(raw);
2760 case "SVGSetElement":
2761 return new SVGSetElementWrappingImplementation._wrap(raw);
2762 case "SVGSwitchElement":
2763 return new SVGSwitchElementWrappingImplementation._wrap(raw);
2764 case "SVGSymbolElement":
2765 return new SVGSymbolElementWrappingImplementation._wrap(raw);
2766 case "SVGTRefElement":
2767 return new SVGTRefElementWrappingImplementation._wrap(raw);
2768 case "SVGTSpanElement":
2769 return new SVGTSpanElementWrappingImplementation._wrap(raw);
2770 case "SVGTextContentElement":
2771 return new SVGTextContentElementWrappingImplementation._wrap(raw);
2772 case "SVGTextElement":
2773 return new SVGTextElementWrappingImplementation._wrap(raw);
2774 case "SVGTextPathElement":
2775 return new SVGTextPathElementWrappingImplementation._wrap(raw);
2776 case "SVGTextPositioningElement":
2777 return new SVGTextPositioningElementWrappingImplementation._wrap(raw);
2778 case "SVGUseElement":
2779 return new SVGUseElementWrappingImplementation._wrap(raw);
2780 case "SVGViewElement":
2781 return new SVGViewElementWrappingImplementation._wrap(raw);
2782 default:
2783 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
2784 }
2785 }
2786
2787 static SVGFEBlendElement wrapSVGFEBlendElement(raw) {
2788 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFEBlendElementWrappingImplementation._wrap(raw);
2789 }
2790
2791 static SVGFEColorMatrixElement wrapSVGFEColorMatrixElement(raw) {
2792 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFEColorMatrixElementWrappingImplementation._wrap(raw) ;
2793 }
2794
2795 static SVGFEComponentTransferElement wrapSVGFEComponentTransferElement(raw) {
2796 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFEComponentTransferElementWrappingImplementation._wra p(raw);
2797 }
2798
2799 static SVGFEConvolveMatrixElement wrapSVGFEConvolveMatrixElement(raw) {
2800 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFEConvolveMatrixElementWrappingImplementation._wrap(r aw);
2801 }
2802
2803 static SVGFEDiffuseLightingElement wrapSVGFEDiffuseLightingElement(raw) {
2804 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFEDiffuseLightingElementWrappingImplementation._wrap( raw);
2805 }
2806
2807 static SVGFEDisplacementMapElement wrapSVGFEDisplacementMapElement(raw) {
2808 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFEDisplacementMapElementWrappingImplementation._wrap( raw);
2809 }
2810
2811 static SVGFEDistantLightElement wrapSVGFEDistantLightElement(raw) {
2812 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFEDistantLightElementWrappingImplementation._wrap(raw );
2813 }
2814
2815 static SVGFEDropShadowElement wrapSVGFEDropShadowElement(raw) {
2816 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFEDropShadowElementWrappingImplementation._wrap(raw);
2817 }
2818
2819 static SVGFEFloodElement wrapSVGFEFloodElement(raw) {
2820 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFEFloodElementWrappingImplementation._wrap(raw);
2821 }
2822
2823 static SVGFEFuncAElement wrapSVGFEFuncAElement(raw) {
2824 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFEFuncAElementWrappingImplementation._wrap(raw);
2825 }
2826
2827 static SVGFEFuncBElement wrapSVGFEFuncBElement(raw) {
2828 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFEFuncBElementWrappingImplementation._wrap(raw);
2829 }
2830
2831 static SVGFEFuncGElement wrapSVGFEFuncGElement(raw) {
2832 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFEFuncGElementWrappingImplementation._wrap(raw);
2833 }
2834
2835 static SVGFEFuncRElement wrapSVGFEFuncRElement(raw) {
2836 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFEFuncRElementWrappingImplementation._wrap(raw);
2837 }
2838
2839 static SVGFEGaussianBlurElement wrapSVGFEGaussianBlurElement(raw) {
2840 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFEGaussianBlurElementWrappingImplementation._wrap(raw );
2841 }
2842
2843 static SVGFEImageElement wrapSVGFEImageElement(raw) {
2844 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFEImageElementWrappingImplementation._wrap(raw);
2845 }
2846
2847 static SVGFEMergeElement wrapSVGFEMergeElement(raw) {
2848 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFEMergeElementWrappingImplementation._wrap(raw);
2849 }
2850
2851 static SVGFEMergeNodeElement wrapSVGFEMergeNodeElement(raw) {
2852 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFEMergeNodeElementWrappingImplementation._wrap(raw);
2853 }
2854
2855 static SVGFEOffsetElement wrapSVGFEOffsetElement(raw) {
2856 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFEOffsetElementWrappingImplementation._wrap(raw);
2857 }
2858
2859 static SVGFEPointLightElement wrapSVGFEPointLightElement(raw) {
2860 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFEPointLightElementWrappingImplementation._wrap(raw);
2861 }
2862
2863 static SVGFESpecularLightingElement wrapSVGFESpecularLightingElement(raw) {
2864 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFESpecularLightingElementWrappingImplementation._wrap (raw);
2865 }
2866
2867 static SVGFESpotLightElement wrapSVGFESpotLightElement(raw) {
2868 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFESpotLightElementWrappingImplementation._wrap(raw);
2869 }
2870
2871 static SVGFETileElement wrapSVGFETileElement(raw) {
2872 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFETileElementWrappingImplementation._wrap(raw);
2873 }
2874
2875 static SVGFETurbulenceElement wrapSVGFETurbulenceElement(raw) {
2876 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFETurbulenceElementWrappingImplementation._wrap(raw);
2877 }
2878
2879 static SVGFilterElement wrapSVGFilterElement(raw) {
2880 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFilterElementWrappingImplementation._wrap(raw);
2881 }
2882
2883 static SVGFilterPrimitiveStandardAttributes wrapSVGFilterPrimitiveStandardAttr ibutes(raw) {
2884 if (raw === null) { return null; }
2885 if (raw.dartObjectLocalStorage !== null) {
2886 return raw.dartObjectLocalStorage;
2887 }
2888 switch (raw.typeName) {
2889 case "SVGFEBlendElement":
2890 return new SVGFEBlendElementWrappingImplementation._wrap(raw);
2891 case "SVGFEColorMatrixElement":
2892 return new SVGFEColorMatrixElementWrappingImplementation._wrap(raw);
2893 case "SVGFEComponentTransferElement":
2894 return new SVGFEComponentTransferElementWrappingImplementation._wrap(raw );
2895 /* Skipping SVGFECompositeElement*/
2896 case "SVGFEConvolveMatrixElement":
2897 return new SVGFEConvolveMatrixElementWrappingImplementation._wrap(raw);
2898 case "SVGFEDiffuseLightingElement":
2899 return new SVGFEDiffuseLightingElementWrappingImplementation._wrap(raw);
2900 case "SVGFEDisplacementMapElement":
2901 return new SVGFEDisplacementMapElementWrappingImplementation._wrap(raw);
2902 case "SVGFEDropShadowElement":
2903 return new SVGFEDropShadowElementWrappingImplementation._wrap(raw);
2904 case "SVGFEFloodElement":
2905 return new SVGFEFloodElementWrappingImplementation._wrap(raw);
2906 case "SVGFEGaussianBlurElement":
2907 return new SVGFEGaussianBlurElementWrappingImplementation._wrap(raw);
2908 case "SVGFEImageElement":
2909 return new SVGFEImageElementWrappingImplementation._wrap(raw);
2910 case "SVGFEMergeElement":
2911 return new SVGFEMergeElementWrappingImplementation._wrap(raw);
2912 /* Skipping SVGFEMorphologyElement*/
2913 case "SVGFEOffsetElement":
2914 return new SVGFEOffsetElementWrappingImplementation._wrap(raw);
2915 case "SVGFESpecularLightingElement":
2916 return new SVGFESpecularLightingElementWrappingImplementation._wrap(raw) ;
2917 case "SVGFETileElement":
2918 return new SVGFETileElementWrappingImplementation._wrap(raw);
2919 case "SVGFETurbulenceElement":
2920 return new SVGFETurbulenceElementWrappingImplementation._wrap(raw);
2921 case "SVGFilterPrimitiveStandardAttributes":
2922 return new SVGFilterPrimitiveStandardAttributesWrappingImplementation._w rap(raw);
2923 default:
2924 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
2925 }
2926 }
2927
2928 static SVGFitToViewBox wrapSVGFitToViewBox(raw) {
2929 if (raw === null) { return null; }
2930 if (raw.dartObjectLocalStorage !== null) {
2931 return raw.dartObjectLocalStorage;
2932 }
2933 switch (raw.typeName) {
2934 case "SVGFitToViewBox":
2935 return new SVGFitToViewBoxWrappingImplementation._wrap(raw);
2936 case "SVGMarkerElement":
2937 return new SVGMarkerElementWrappingImplementation._wrap(raw);
2938 case "SVGPatternElement":
2939 return new SVGPatternElementWrappingImplementation._wrap(raw);
2940 case "SVGSVGElement":
2941 return new SVGSVGElementWrappingImplementation._wrap(raw);
2942 case "SVGSymbolElement":
2943 return new SVGSymbolElementWrappingImplementation._wrap(raw);
2944 case "SVGViewElement":
2945 return new SVGViewElementWrappingImplementation._wrap(raw);
2946 case "SVGViewSpec":
2947 return new SVGViewSpecWrappingImplementation._wrap(raw);
2948 default:
2949 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
2950 }
2951 }
2952
2953 static SVGFontElement wrapSVGFontElement(raw) {
2954 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFontElementWrappingImplementation._wrap(raw);
2955 }
2956
2957 static SVGFontFaceElement wrapSVGFontFaceElement(raw) {
2958 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFontFaceElementWrappingImplementation._wrap(raw);
2959 }
2960
2961 static SVGFontFaceFormatElement wrapSVGFontFaceFormatElement(raw) {
2962 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFontFaceFormatElementWrappingImplementation._wrap(raw );
2963 }
2964
2965 static SVGFontFaceNameElement wrapSVGFontFaceNameElement(raw) {
2966 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFontFaceNameElementWrappingImplementation._wrap(raw);
2967 }
2968
2969 static SVGFontFaceSrcElement wrapSVGFontFaceSrcElement(raw) {
2970 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFontFaceSrcElementWrappingImplementation._wrap(raw);
2971 }
2972
2973 static SVGFontFaceUriElement wrapSVGFontFaceUriElement(raw) {
2974 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGFontFaceUriElementWrappingImplementation._wrap(raw);
2975 }
2976
2977 static SVGForeignObjectElement wrapSVGForeignObjectElement(raw) {
2978 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGForeignObjectElementWrappingImplementation._wrap(raw) ;
2979 }
2980
2981 static SVGGElement wrapSVGGElement(raw) {
2982 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGGElementWrappingImplementation._wrap(raw);
2983 }
2984
2985 static SVGGlyphElement wrapSVGGlyphElement(raw) {
2986 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGGlyphElementWrappingImplementation._wrap(raw);
2987 }
2988
2989 static SVGGlyphRefElement wrapSVGGlyphRefElement(raw) {
2990 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGGlyphRefElementWrappingImplementation._wrap(raw);
2991 }
2992
2993 static SVGGradientElement wrapSVGGradientElement(raw) {
2994 if (raw === null) { return null; }
2995 if (raw.dartObjectLocalStorage !== null) {
2996 return raw.dartObjectLocalStorage;
2997 }
2998 switch (raw.typeName) {
2999 case "SVGGradientElement":
3000 return new SVGGradientElementWrappingImplementation._wrap(raw);
3001 case "SVGLinearGradientElement":
3002 return new SVGLinearGradientElementWrappingImplementation._wrap(raw);
3003 case "SVGRadialGradientElement":
3004 return new SVGRadialGradientElementWrappingImplementation._wrap(raw);
3005 default:
3006 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
3007 }
3008 }
3009
3010 static SVGHKernElement wrapSVGHKernElement(raw) {
3011 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGHKernElementWrappingImplementation._wrap(raw);
3012 }
3013
3014 static SVGImageElement wrapSVGImageElement(raw) {
3015 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGImageElementWrappingImplementation._wrap(raw);
3016 }
3017
3018 static SVGLangSpace wrapSVGLangSpace(raw) {
3019 if (raw === null) { return null; }
3020 if (raw.dartObjectLocalStorage !== null) {
3021 return raw.dartObjectLocalStorage;
3022 }
3023 switch (raw.typeName) {
3024 case "SVGAElement":
3025 return new SVGAElementWrappingImplementation._wrap(raw);
3026 case "SVGAltGlyphElement":
3027 return new SVGAltGlyphElementWrappingImplementation._wrap(raw);
3028 case "SVGCircleElement":
3029 return new SVGCircleElementWrappingImplementation._wrap(raw);
3030 case "SVGClipPathElement":
3031 return new SVGClipPathElementWrappingImplementation._wrap(raw);
3032 case "SVGDefsElement":
3033 return new SVGDefsElementWrappingImplementation._wrap(raw);
3034 case "SVGDescElement":
3035 return new SVGDescElementWrappingImplementation._wrap(raw);
3036 case "SVGEllipseElement":
3037 return new SVGEllipseElementWrappingImplementation._wrap(raw);
3038 case "SVGFEImageElement":
3039 return new SVGFEImageElementWrappingImplementation._wrap(raw);
3040 case "SVGFilterElement":
3041 return new SVGFilterElementWrappingImplementation._wrap(raw);
3042 case "SVGForeignObjectElement":
3043 return new SVGForeignObjectElementWrappingImplementation._wrap(raw);
3044 case "SVGGElement":
3045 return new SVGGElementWrappingImplementation._wrap(raw);
3046 case "SVGImageElement":
3047 return new SVGImageElementWrappingImplementation._wrap(raw);
3048 case "SVGLangSpace":
3049 return new SVGLangSpaceWrappingImplementation._wrap(raw);
3050 case "SVGLineElement":
3051 return new SVGLineElementWrappingImplementation._wrap(raw);
3052 case "SVGMarkerElement":
3053 return new SVGMarkerElementWrappingImplementation._wrap(raw);
3054 case "SVGMaskElement":
3055 return new SVGMaskElementWrappingImplementation._wrap(raw);
3056 case "SVGPathElement":
3057 return new SVGPathElementWrappingImplementation._wrap(raw);
3058 case "SVGPatternElement":
3059 return new SVGPatternElementWrappingImplementation._wrap(raw);
3060 case "SVGPolygonElement":
3061 return new SVGPolygonElementWrappingImplementation._wrap(raw);
3062 case "SVGPolylineElement":
3063 return new SVGPolylineElementWrappingImplementation._wrap(raw);
3064 case "SVGRectElement":
3065 return new SVGRectElementWrappingImplementation._wrap(raw);
3066 case "SVGSVGElement":
3067 return new SVGSVGElementWrappingImplementation._wrap(raw);
3068 case "SVGStyleElement":
3069 return new SVGStyleElementWrappingImplementation._wrap(raw);
3070 case "SVGSwitchElement":
3071 return new SVGSwitchElementWrappingImplementation._wrap(raw);
3072 case "SVGSymbolElement":
3073 return new SVGSymbolElementWrappingImplementation._wrap(raw);
3074 case "SVGTRefElement":
3075 return new SVGTRefElementWrappingImplementation._wrap(raw);
3076 case "SVGTSpanElement":
3077 return new SVGTSpanElementWrappingImplementation._wrap(raw);
3078 case "SVGTextContentElement":
3079 return new SVGTextContentElementWrappingImplementation._wrap(raw);
3080 case "SVGTextElement":
3081 return new SVGTextElementWrappingImplementation._wrap(raw);
3082 case "SVGTextPathElement":
3083 return new SVGTextPathElementWrappingImplementation._wrap(raw);
3084 case "SVGTextPositioningElement":
3085 return new SVGTextPositioningElementWrappingImplementation._wrap(raw);
3086 case "SVGTitleElement":
3087 return new SVGTitleElementWrappingImplementation._wrap(raw);
3088 case "SVGUseElement":
3089 return new SVGUseElementWrappingImplementation._wrap(raw);
3090 default:
3091 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
3092 }
3093 }
3094
3095 static SVGLength wrapSVGLength(raw) {
3096 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGLengthWrappingImplementation._wrap(raw);
3097 }
3098
3099 static SVGLengthList wrapSVGLengthList(raw) {
3100 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGLengthListWrappingImplementation._wrap(raw);
3101 }
3102
3103 static SVGLineElement wrapSVGLineElement(raw) {
3104 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGLineElementWrappingImplementation._wrap(raw);
3105 }
3106
3107 static SVGLinearGradientElement wrapSVGLinearGradientElement(raw) {
3108 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGLinearGradientElementWrappingImplementation._wrap(raw );
3109 }
3110
3111 static SVGLocatable wrapSVGLocatable(raw) {
3112 if (raw === null) { return null; }
3113 if (raw.dartObjectLocalStorage !== null) {
3114 return raw.dartObjectLocalStorage;
3115 }
3116 switch (raw.typeName) {
3117 case "SVGAElement":
3118 return new SVGAElementWrappingImplementation._wrap(raw);
3119 case "SVGCircleElement":
3120 return new SVGCircleElementWrappingImplementation._wrap(raw);
3121 case "SVGClipPathElement":
3122 return new SVGClipPathElementWrappingImplementation._wrap(raw);
3123 case "SVGDefsElement":
3124 return new SVGDefsElementWrappingImplementation._wrap(raw);
3125 case "SVGEllipseElement":
3126 return new SVGEllipseElementWrappingImplementation._wrap(raw);
3127 case "SVGForeignObjectElement":
3128 return new SVGForeignObjectElementWrappingImplementation._wrap(raw);
3129 case "SVGGElement":
3130 return new SVGGElementWrappingImplementation._wrap(raw);
3131 case "SVGImageElement":
3132 return new SVGImageElementWrappingImplementation._wrap(raw);
3133 case "SVGLineElement":
3134 return new SVGLineElementWrappingImplementation._wrap(raw);
3135 case "SVGLocatable":
3136 return new SVGLocatableWrappingImplementation._wrap(raw);
3137 case "SVGPathElement":
3138 return new SVGPathElementWrappingImplementation._wrap(raw);
3139 case "SVGPolygonElement":
3140 return new SVGPolygonElementWrappingImplementation._wrap(raw);
3141 case "SVGPolylineElement":
3142 return new SVGPolylineElementWrappingImplementation._wrap(raw);
3143 case "SVGRectElement":
3144 return new SVGRectElementWrappingImplementation._wrap(raw);
3145 case "SVGSVGElement":
3146 return new SVGSVGElementWrappingImplementation._wrap(raw);
3147 case "SVGSwitchElement":
3148 return new SVGSwitchElementWrappingImplementation._wrap(raw);
3149 case "SVGTextElement":
3150 return new SVGTextElementWrappingImplementation._wrap(raw);
3151 case "SVGTransformable":
3152 return new SVGTransformableWrappingImplementation._wrap(raw);
3153 case "SVGUseElement":
3154 return new SVGUseElementWrappingImplementation._wrap(raw);
3155 default:
3156 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
3157 }
3158 }
3159
3160 static SVGMPathElement wrapSVGMPathElement(raw) {
3161 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGMPathElementWrappingImplementation._wrap(raw);
3162 }
3163
3164 static SVGMarkerElement wrapSVGMarkerElement(raw) {
3165 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGMarkerElementWrappingImplementation._wrap(raw);
3166 }
3167
3168 static SVGMaskElement wrapSVGMaskElement(raw) {
3169 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGMaskElementWrappingImplementation._wrap(raw);
3170 }
3171
3172 static SVGMatrix wrapSVGMatrix(raw) {
3173 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGMatrixWrappingImplementation._wrap(raw);
3174 }
3175
3176 static SVGMetadataElement wrapSVGMetadataElement(raw) {
3177 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGMetadataElementWrappingImplementation._wrap(raw);
3178 }
3179
3180 static SVGMissingGlyphElement wrapSVGMissingGlyphElement(raw) {
3181 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGMissingGlyphElementWrappingImplementation._wrap(raw);
3182 }
3183
3184 static SVGNumber wrapSVGNumber(raw) {
3185 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGNumberWrappingImplementation._wrap(raw);
3186 }
3187
3188 static SVGNumberList wrapSVGNumberList(raw) {
3189 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGNumberListWrappingImplementation._wrap(raw);
3190 }
3191
3192 static SVGPaint wrapSVGPaint(raw) {
3193 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPaintWrappingImplementation._wrap(raw);
3194 }
3195
3196 static SVGPathElement wrapSVGPathElement(raw) {
3197 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPathElementWrappingImplementation._wrap(raw);
3198 }
3199
3200 static SVGPathSeg wrapSVGPathSeg(raw) {
3201 if (raw === null) { return null; }
3202 if (raw.dartObjectLocalStorage !== null) {
3203 return raw.dartObjectLocalStorage;
3204 }
3205 switch (raw.typeName) {
3206 case "SVGPathSeg":
3207 return new SVGPathSegWrappingImplementation._wrap(raw);
3208 case "SVGPathSegArcAbs":
3209 return new SVGPathSegArcAbsWrappingImplementation._wrap(raw);
3210 case "SVGPathSegArcRel":
3211 return new SVGPathSegArcRelWrappingImplementation._wrap(raw);
3212 case "SVGPathSegClosePath":
3213 return new SVGPathSegClosePathWrappingImplementation._wrap(raw);
3214 case "SVGPathSegCurvetoCubicAbs":
3215 return new SVGPathSegCurvetoCubicAbsWrappingImplementation._wrap(raw);
3216 case "SVGPathSegCurvetoCubicRel":
3217 return new SVGPathSegCurvetoCubicRelWrappingImplementation._wrap(raw);
3218 case "SVGPathSegCurvetoCubicSmoothAbs":
3219 return new SVGPathSegCurvetoCubicSmoothAbsWrappingImplementation._wrap(r aw);
3220 case "SVGPathSegCurvetoCubicSmoothRel":
3221 return new SVGPathSegCurvetoCubicSmoothRelWrappingImplementation._wrap(r aw);
3222 case "SVGPathSegCurvetoQuadraticAbs":
3223 return new SVGPathSegCurvetoQuadraticAbsWrappingImplementation._wrap(raw );
3224 case "SVGPathSegCurvetoQuadraticRel":
3225 return new SVGPathSegCurvetoQuadraticRelWrappingImplementation._wrap(raw );
3226 case "SVGPathSegCurvetoQuadraticSmoothAbs":
3227 return new SVGPathSegCurvetoQuadraticSmoothAbsWrappingImplementation._wr ap(raw);
3228 case "SVGPathSegCurvetoQuadraticSmoothRel":
3229 return new SVGPathSegCurvetoQuadraticSmoothRelWrappingImplementation._wr ap(raw);
3230 case "SVGPathSegLinetoAbs":
3231 return new SVGPathSegLinetoAbsWrappingImplementation._wrap(raw);
3232 case "SVGPathSegLinetoHorizontalAbs":
3233 return new SVGPathSegLinetoHorizontalAbsWrappingImplementation._wrap(raw );
3234 case "SVGPathSegLinetoHorizontalRel":
3235 return new SVGPathSegLinetoHorizontalRelWrappingImplementation._wrap(raw );
3236 case "SVGPathSegLinetoRel":
3237 return new SVGPathSegLinetoRelWrappingImplementation._wrap(raw);
3238 case "SVGPathSegLinetoVerticalAbs":
3239 return new SVGPathSegLinetoVerticalAbsWrappingImplementation._wrap(raw);
3240 case "SVGPathSegLinetoVerticalRel":
3241 return new SVGPathSegLinetoVerticalRelWrappingImplementation._wrap(raw);
3242 case "SVGPathSegMovetoAbs":
3243 return new SVGPathSegMovetoAbsWrappingImplementation._wrap(raw);
3244 case "SVGPathSegMovetoRel":
3245 return new SVGPathSegMovetoRelWrappingImplementation._wrap(raw);
3246 default:
3247 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
3248 }
3249 }
3250
3251 static SVGPathSegArcAbs wrapSVGPathSegArcAbs(raw) {
3252 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPathSegArcAbsWrappingImplementation._wrap(raw);
3253 }
3254
3255 static SVGPathSegArcRel wrapSVGPathSegArcRel(raw) {
3256 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPathSegArcRelWrappingImplementation._wrap(raw);
3257 }
3258
3259 static SVGPathSegClosePath wrapSVGPathSegClosePath(raw) {
3260 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPathSegClosePathWrappingImplementation._wrap(raw);
3261 }
3262
3263 static SVGPathSegCurvetoCubicAbs wrapSVGPathSegCurvetoCubicAbs(raw) {
3264 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPathSegCurvetoCubicAbsWrappingImplementation._wrap(ra w);
3265 }
3266
3267 static SVGPathSegCurvetoCubicRel wrapSVGPathSegCurvetoCubicRel(raw) {
3268 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPathSegCurvetoCubicRelWrappingImplementation._wrap(ra w);
3269 }
3270
3271 static SVGPathSegCurvetoCubicSmoothAbs wrapSVGPathSegCurvetoCubicSmoothAbs(raw ) {
3272 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPathSegCurvetoCubicSmoothAbsWrappingImplementation._w rap(raw);
3273 }
3274
3275 static SVGPathSegCurvetoCubicSmoothRel wrapSVGPathSegCurvetoCubicSmoothRel(raw ) {
3276 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPathSegCurvetoCubicSmoothRelWrappingImplementation._w rap(raw);
3277 }
3278
3279 static SVGPathSegCurvetoQuadraticAbs wrapSVGPathSegCurvetoQuadraticAbs(raw) {
3280 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPathSegCurvetoQuadraticAbsWrappingImplementation._wra p(raw);
3281 }
3282
3283 static SVGPathSegCurvetoQuadraticRel wrapSVGPathSegCurvetoQuadraticRel(raw) {
3284 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPathSegCurvetoQuadraticRelWrappingImplementation._wra p(raw);
3285 }
3286
3287 static SVGPathSegCurvetoQuadraticSmoothAbs wrapSVGPathSegCurvetoQuadraticSmoot hAbs(raw) {
3288 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPathSegCurvetoQuadraticSmoothAbsWrappingImplementatio n._wrap(raw);
3289 }
3290
3291 static SVGPathSegCurvetoQuadraticSmoothRel wrapSVGPathSegCurvetoQuadraticSmoot hRel(raw) {
3292 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPathSegCurvetoQuadraticSmoothRelWrappingImplementatio n._wrap(raw);
3293 }
3294
3295 static SVGPathSegLinetoAbs wrapSVGPathSegLinetoAbs(raw) {
3296 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPathSegLinetoAbsWrappingImplementation._wrap(raw);
3297 }
3298
3299 static SVGPathSegLinetoHorizontalAbs wrapSVGPathSegLinetoHorizontalAbs(raw) {
3300 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPathSegLinetoHorizontalAbsWrappingImplementation._wra p(raw);
3301 }
3302
3303 static SVGPathSegLinetoHorizontalRel wrapSVGPathSegLinetoHorizontalRel(raw) {
3304 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPathSegLinetoHorizontalRelWrappingImplementation._wra p(raw);
3305 }
3306
3307 static SVGPathSegLinetoRel wrapSVGPathSegLinetoRel(raw) {
3308 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPathSegLinetoRelWrappingImplementation._wrap(raw);
3309 }
3310
3311 static SVGPathSegLinetoVerticalAbs wrapSVGPathSegLinetoVerticalAbs(raw) {
3312 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPathSegLinetoVerticalAbsWrappingImplementation._wrap( raw);
3313 }
3314
3315 static SVGPathSegLinetoVerticalRel wrapSVGPathSegLinetoVerticalRel(raw) {
3316 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPathSegLinetoVerticalRelWrappingImplementation._wrap( raw);
3317 }
3318
3319 static SVGPathSegList wrapSVGPathSegList(raw) {
3320 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPathSegListWrappingImplementation._wrap(raw);
3321 }
3322
3323 static SVGPathSegMovetoAbs wrapSVGPathSegMovetoAbs(raw) {
3324 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPathSegMovetoAbsWrappingImplementation._wrap(raw);
3325 }
3326
3327 static SVGPathSegMovetoRel wrapSVGPathSegMovetoRel(raw) {
3328 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPathSegMovetoRelWrappingImplementation._wrap(raw);
3329 }
3330
3331 static SVGPatternElement wrapSVGPatternElement(raw) {
3332 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPatternElementWrappingImplementation._wrap(raw);
3333 }
3334
3335 static SVGPoint wrapSVGPoint(raw) {
3336 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPointWrappingImplementation._wrap(raw);
3337 }
3338
3339 static SVGPointList wrapSVGPointList(raw) {
3340 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPointListWrappingImplementation._wrap(raw);
3341 }
3342
3343 static SVGPolygonElement wrapSVGPolygonElement(raw) {
3344 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPolygonElementWrappingImplementation._wrap(raw);
3345 }
3346
3347 static SVGPolylineElement wrapSVGPolylineElement(raw) {
3348 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPolylineElementWrappingImplementation._wrap(raw);
3349 }
3350
3351 static SVGPreserveAspectRatio wrapSVGPreserveAspectRatio(raw) {
3352 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGPreserveAspectRatioWrappingImplementation._wrap(raw);
3353 }
3354
3355 static SVGRadialGradientElement wrapSVGRadialGradientElement(raw) {
3356 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGRadialGradientElementWrappingImplementation._wrap(raw );
3357 }
3358
3359 static SVGRect wrapSVGRect(raw) {
3360 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGRectWrappingImplementation._wrap(raw);
3361 }
3362
3363 static SVGRectElement wrapSVGRectElement(raw) {
3364 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGRectElementWrappingImplementation._wrap(raw);
3365 }
3366
3367 static SVGRenderingIntent wrapSVGRenderingIntent(raw) {
3368 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGRenderingIntentWrappingImplementation._wrap(raw);
3369 }
3370
3371 static SVGSVGElement wrapSVGSVGElement(raw) {
3372 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGSVGElementWrappingImplementation._wrap(raw);
3373 }
3374
3375 static SVGScriptElement wrapSVGScriptElement(raw) {
3376 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGScriptElementWrappingImplementation._wrap(raw);
3377 }
3378
3379 static SVGSetElement wrapSVGSetElement(raw) {
3380 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGSetElementWrappingImplementation._wrap(raw);
3381 }
3382
3383 static SVGStopElement wrapSVGStopElement(raw) {
3384 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGStopElementWrappingImplementation._wrap(raw);
3385 }
3386
3387 static SVGStringList wrapSVGStringList(raw) {
3388 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGStringListWrappingImplementation._wrap(raw);
3389 }
3390
3391 static SVGStylable wrapSVGStylable(raw) {
3392 if (raw === null) { return null; }
3393 if (raw.dartObjectLocalStorage !== null) {
3394 return raw.dartObjectLocalStorage;
3395 }
3396 switch (raw.typeName) {
3397 case "SVGAElement":
3398 return new SVGAElementWrappingImplementation._wrap(raw);
3399 case "SVGAltGlyphElement":
3400 return new SVGAltGlyphElementWrappingImplementation._wrap(raw);
3401 case "SVGCircleElement":
3402 return new SVGCircleElementWrappingImplementation._wrap(raw);
3403 case "SVGClipPathElement":
3404 return new SVGClipPathElementWrappingImplementation._wrap(raw);
3405 case "SVGDefsElement":
3406 return new SVGDefsElementWrappingImplementation._wrap(raw);
3407 case "SVGDescElement":
3408 return new SVGDescElementWrappingImplementation._wrap(raw);
3409 case "SVGEllipseElement":
3410 return new SVGEllipseElementWrappingImplementation._wrap(raw);
3411 case "SVGFEBlendElement":
3412 return new SVGFEBlendElementWrappingImplementation._wrap(raw);
3413 case "SVGFEColorMatrixElement":
3414 return new SVGFEColorMatrixElementWrappingImplementation._wrap(raw);
3415 case "SVGFEComponentTransferElement":
3416 return new SVGFEComponentTransferElementWrappingImplementation._wrap(raw );
3417 /* Skipping SVGFECompositeElement*/
3418 case "SVGFEConvolveMatrixElement":
3419 return new SVGFEConvolveMatrixElementWrappingImplementation._wrap(raw);
3420 case "SVGFEDiffuseLightingElement":
3421 return new SVGFEDiffuseLightingElementWrappingImplementation._wrap(raw);
3422 case "SVGFEDisplacementMapElement":
3423 return new SVGFEDisplacementMapElementWrappingImplementation._wrap(raw);
3424 case "SVGFEDropShadowElement":
3425 return new SVGFEDropShadowElementWrappingImplementation._wrap(raw);
3426 case "SVGFEFloodElement":
3427 return new SVGFEFloodElementWrappingImplementation._wrap(raw);
3428 case "SVGFEGaussianBlurElement":
3429 return new SVGFEGaussianBlurElementWrappingImplementation._wrap(raw);
3430 case "SVGFEImageElement":
3431 return new SVGFEImageElementWrappingImplementation._wrap(raw);
3432 case "SVGFEMergeElement":
3433 return new SVGFEMergeElementWrappingImplementation._wrap(raw);
3434 /* Skipping SVGFEMorphologyElement*/
3435 case "SVGFEOffsetElement":
3436 return new SVGFEOffsetElementWrappingImplementation._wrap(raw);
3437 case "SVGFESpecularLightingElement":
3438 return new SVGFESpecularLightingElementWrappingImplementation._wrap(raw) ;
3439 case "SVGFETileElement":
3440 return new SVGFETileElementWrappingImplementation._wrap(raw);
3441 case "SVGFETurbulenceElement":
3442 return new SVGFETurbulenceElementWrappingImplementation._wrap(raw);
3443 case "SVGFilterElement":
3444 return new SVGFilterElementWrappingImplementation._wrap(raw);
3445 case "SVGFilterPrimitiveStandardAttributes":
3446 return new SVGFilterPrimitiveStandardAttributesWrappingImplementation._w rap(raw);
3447 case "SVGForeignObjectElement":
3448 return new SVGForeignObjectElementWrappingImplementation._wrap(raw);
3449 case "SVGGElement":
3450 return new SVGGElementWrappingImplementation._wrap(raw);
3451 case "SVGGlyphRefElement":
3452 return new SVGGlyphRefElementWrappingImplementation._wrap(raw);
3453 case "SVGGradientElement":
3454 return new SVGGradientElementWrappingImplementation._wrap(raw);
3455 case "SVGImageElement":
3456 return new SVGImageElementWrappingImplementation._wrap(raw);
3457 case "SVGLineElement":
3458 return new SVGLineElementWrappingImplementation._wrap(raw);
3459 case "SVGLinearGradientElement":
3460 return new SVGLinearGradientElementWrappingImplementation._wrap(raw);
3461 case "SVGMarkerElement":
3462 return new SVGMarkerElementWrappingImplementation._wrap(raw);
3463 case "SVGMaskElement":
3464 return new SVGMaskElementWrappingImplementation._wrap(raw);
3465 case "SVGPathElement":
3466 return new SVGPathElementWrappingImplementation._wrap(raw);
3467 case "SVGPatternElement":
3468 return new SVGPatternElementWrappingImplementation._wrap(raw);
3469 case "SVGPolygonElement":
3470 return new SVGPolygonElementWrappingImplementation._wrap(raw);
3471 case "SVGPolylineElement":
3472 return new SVGPolylineElementWrappingImplementation._wrap(raw);
3473 case "SVGRadialGradientElement":
3474 return new SVGRadialGradientElementWrappingImplementation._wrap(raw);
3475 case "SVGRectElement":
3476 return new SVGRectElementWrappingImplementation._wrap(raw);
3477 case "SVGSVGElement":
3478 return new SVGSVGElementWrappingImplementation._wrap(raw);
3479 case "SVGStopElement":
3480 return new SVGStopElementWrappingImplementation._wrap(raw);
3481 case "SVGStylable":
3482 return new SVGStylableWrappingImplementation._wrap(raw);
3483 case "SVGSwitchElement":
3484 return new SVGSwitchElementWrappingImplementation._wrap(raw);
3485 case "SVGSymbolElement":
3486 return new SVGSymbolElementWrappingImplementation._wrap(raw);
3487 case "SVGTRefElement":
3488 return new SVGTRefElementWrappingImplementation._wrap(raw);
3489 case "SVGTSpanElement":
3490 return new SVGTSpanElementWrappingImplementation._wrap(raw);
3491 case "SVGTextContentElement":
3492 return new SVGTextContentElementWrappingImplementation._wrap(raw);
3493 case "SVGTextElement":
3494 return new SVGTextElementWrappingImplementation._wrap(raw);
3495 case "SVGTextPathElement":
3496 return new SVGTextPathElementWrappingImplementation._wrap(raw);
3497 case "SVGTextPositioningElement":
3498 return new SVGTextPositioningElementWrappingImplementation._wrap(raw);
3499 case "SVGTitleElement":
3500 return new SVGTitleElementWrappingImplementation._wrap(raw);
3501 case "SVGUseElement":
3502 return new SVGUseElementWrappingImplementation._wrap(raw);
3503 default:
3504 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
3505 }
3506 }
3507
3508 static SVGStyleElement wrapSVGStyleElement(raw) {
3509 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGStyleElementWrappingImplementation._wrap(raw);
3510 }
3511
3512 static SVGSwitchElement wrapSVGSwitchElement(raw) {
3513 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGSwitchElementWrappingImplementation._wrap(raw);
3514 }
3515
3516 static SVGSymbolElement wrapSVGSymbolElement(raw) {
3517 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGSymbolElementWrappingImplementation._wrap(raw);
3518 }
3519
3520 static SVGTRefElement wrapSVGTRefElement(raw) {
3521 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGTRefElementWrappingImplementation._wrap(raw);
3522 }
3523
3524 static SVGTSpanElement wrapSVGTSpanElement(raw) {
3525 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGTSpanElementWrappingImplementation._wrap(raw);
3526 }
3527
3528 static SVGTests wrapSVGTests(raw) {
3529 if (raw === null) { return null; }
3530 if (raw.dartObjectLocalStorage !== null) {
3531 return raw.dartObjectLocalStorage;
3532 }
3533 switch (raw.typeName) {
3534 case "SVGAElement":
3535 return new SVGAElementWrappingImplementation._wrap(raw);
3536 case "SVGAltGlyphElement":
3537 return new SVGAltGlyphElementWrappingImplementation._wrap(raw);
3538 case "SVGAnimateColorElement":
3539 return new SVGAnimateColorElementWrappingImplementation._wrap(raw);
3540 case "SVGAnimateElement":
3541 return new SVGAnimateElementWrappingImplementation._wrap(raw);
3542 case "SVGAnimateMotionElement":
3543 return new SVGAnimateMotionElementWrappingImplementation._wrap(raw);
3544 case "SVGAnimateTransformElement":
3545 return new SVGAnimateTransformElementWrappingImplementation._wrap(raw);
3546 case "SVGAnimationElement":
3547 return new SVGAnimationElementWrappingImplementation._wrap(raw);
3548 case "SVGCircleElement":
3549 return new SVGCircleElementWrappingImplementation._wrap(raw);
3550 case "SVGClipPathElement":
3551 return new SVGClipPathElementWrappingImplementation._wrap(raw);
3552 case "SVGCursorElement":
3553 return new SVGCursorElementWrappingImplementation._wrap(raw);
3554 case "SVGDefsElement":
3555 return new SVGDefsElementWrappingImplementation._wrap(raw);
3556 case "SVGEllipseElement":
3557 return new SVGEllipseElementWrappingImplementation._wrap(raw);
3558 case "SVGForeignObjectElement":
3559 return new SVGForeignObjectElementWrappingImplementation._wrap(raw);
3560 case "SVGGElement":
3561 return new SVGGElementWrappingImplementation._wrap(raw);
3562 case "SVGImageElement":
3563 return new SVGImageElementWrappingImplementation._wrap(raw);
3564 case "SVGLineElement":
3565 return new SVGLineElementWrappingImplementation._wrap(raw);
3566 case "SVGMaskElement":
3567 return new SVGMaskElementWrappingImplementation._wrap(raw);
3568 case "SVGPathElement":
3569 return new SVGPathElementWrappingImplementation._wrap(raw);
3570 case "SVGPatternElement":
3571 return new SVGPatternElementWrappingImplementation._wrap(raw);
3572 case "SVGPolygonElement":
3573 return new SVGPolygonElementWrappingImplementation._wrap(raw);
3574 case "SVGPolylineElement":
3575 return new SVGPolylineElementWrappingImplementation._wrap(raw);
3576 case "SVGRectElement":
3577 return new SVGRectElementWrappingImplementation._wrap(raw);
3578 case "SVGSVGElement":
3579 return new SVGSVGElementWrappingImplementation._wrap(raw);
3580 case "SVGSetElement":
3581 return new SVGSetElementWrappingImplementation._wrap(raw);
3582 case "SVGSwitchElement":
3583 return new SVGSwitchElementWrappingImplementation._wrap(raw);
3584 case "SVGTRefElement":
3585 return new SVGTRefElementWrappingImplementation._wrap(raw);
3586 case "SVGTSpanElement":
3587 return new SVGTSpanElementWrappingImplementation._wrap(raw);
3588 case "SVGTests":
3589 return new SVGTestsWrappingImplementation._wrap(raw);
3590 case "SVGTextContentElement":
3591 return new SVGTextContentElementWrappingImplementation._wrap(raw);
3592 case "SVGTextElement":
3593 return new SVGTextElementWrappingImplementation._wrap(raw);
3594 case "SVGTextPathElement":
3595 return new SVGTextPathElementWrappingImplementation._wrap(raw);
3596 case "SVGTextPositioningElement":
3597 return new SVGTextPositioningElementWrappingImplementation._wrap(raw);
3598 case "SVGUseElement":
3599 return new SVGUseElementWrappingImplementation._wrap(raw);
3600 default:
3601 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
3602 }
3603 }
3604
3605 static SVGTextContentElement wrapSVGTextContentElement(raw) {
3606 if (raw === null) { return null; }
3607 if (raw.dartObjectLocalStorage !== null) {
3608 return raw.dartObjectLocalStorage;
3609 }
3610 switch (raw.typeName) {
3611 case "SVGAltGlyphElement":
3612 return new SVGAltGlyphElementWrappingImplementation._wrap(raw);
3613 case "SVGTRefElement":
3614 return new SVGTRefElementWrappingImplementation._wrap(raw);
3615 case "SVGTSpanElement":
3616 return new SVGTSpanElementWrappingImplementation._wrap(raw);
3617 case "SVGTextContentElement":
3618 return new SVGTextContentElementWrappingImplementation._wrap(raw);
3619 case "SVGTextElement":
3620 return new SVGTextElementWrappingImplementation._wrap(raw);
3621 case "SVGTextPathElement":
3622 return new SVGTextPathElementWrappingImplementation._wrap(raw);
3623 case "SVGTextPositioningElement":
3624 return new SVGTextPositioningElementWrappingImplementation._wrap(raw);
3625 default:
3626 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
3627 }
3628 }
3629
3630 static SVGTextElement wrapSVGTextElement(raw) {
3631 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGTextElementWrappingImplementation._wrap(raw);
3632 }
3633
3634 static SVGTextPathElement wrapSVGTextPathElement(raw) {
3635 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGTextPathElementWrappingImplementation._wrap(raw);
3636 }
3637
3638 static SVGTextPositioningElement wrapSVGTextPositioningElement(raw) {
3639 if (raw === null) { return null; }
3640 if (raw.dartObjectLocalStorage !== null) {
3641 return raw.dartObjectLocalStorage;
3642 }
3643 switch (raw.typeName) {
3644 case "SVGAltGlyphElement":
3645 return new SVGAltGlyphElementWrappingImplementation._wrap(raw);
3646 case "SVGTRefElement":
3647 return new SVGTRefElementWrappingImplementation._wrap(raw);
3648 case "SVGTSpanElement":
3649 return new SVGTSpanElementWrappingImplementation._wrap(raw);
3650 case "SVGTextElement":
3651 return new SVGTextElementWrappingImplementation._wrap(raw);
3652 case "SVGTextPositioningElement":
3653 return new SVGTextPositioningElementWrappingImplementation._wrap(raw);
3654 default:
3655 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
3656 }
3657 }
3658
3659 static SVGTitleElement wrapSVGTitleElement(raw) {
3660 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGTitleElementWrappingImplementation._wrap(raw);
3661 }
3662
3663 static SVGTransform wrapSVGTransform(raw) {
3664 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGTransformWrappingImplementation._wrap(raw);
3665 }
3666
3667 static SVGTransformList wrapSVGTransformList(raw) {
3668 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGTransformListWrappingImplementation._wrap(raw);
3669 }
3670
3671 static SVGTransformable wrapSVGTransformable(raw) {
3672 if (raw === null) { return null; }
3673 if (raw.dartObjectLocalStorage !== null) {
3674 return raw.dartObjectLocalStorage;
3675 }
3676 switch (raw.typeName) {
3677 case "SVGAElement":
3678 return new SVGAElementWrappingImplementation._wrap(raw);
3679 case "SVGCircleElement":
3680 return new SVGCircleElementWrappingImplementation._wrap(raw);
3681 case "SVGClipPathElement":
3682 return new SVGClipPathElementWrappingImplementation._wrap(raw);
3683 case "SVGDefsElement":
3684 return new SVGDefsElementWrappingImplementation._wrap(raw);
3685 case "SVGEllipseElement":
3686 return new SVGEllipseElementWrappingImplementation._wrap(raw);
3687 case "SVGForeignObjectElement":
3688 return new SVGForeignObjectElementWrappingImplementation._wrap(raw);
3689 case "SVGGElement":
3690 return new SVGGElementWrappingImplementation._wrap(raw);
3691 case "SVGImageElement":
3692 return new SVGImageElementWrappingImplementation._wrap(raw);
3693 case "SVGLineElement":
3694 return new SVGLineElementWrappingImplementation._wrap(raw);
3695 case "SVGPathElement":
3696 return new SVGPathElementWrappingImplementation._wrap(raw);
3697 case "SVGPolygonElement":
3698 return new SVGPolygonElementWrappingImplementation._wrap(raw);
3699 case "SVGPolylineElement":
3700 return new SVGPolylineElementWrappingImplementation._wrap(raw);
3701 case "SVGRectElement":
3702 return new SVGRectElementWrappingImplementation._wrap(raw);
3703 case "SVGSwitchElement":
3704 return new SVGSwitchElementWrappingImplementation._wrap(raw);
3705 case "SVGTextElement":
3706 return new SVGTextElementWrappingImplementation._wrap(raw);
3707 case "SVGTransformable":
3708 return new SVGTransformableWrappingImplementation._wrap(raw);
3709 case "SVGUseElement":
3710 return new SVGUseElementWrappingImplementation._wrap(raw);
3711 default:
3712 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
3713 }
3714 }
3715
3716 static SVGURIReference wrapSVGURIReference(raw) {
3717 if (raw === null) { return null; }
3718 if (raw.dartObjectLocalStorage !== null) {
3719 return raw.dartObjectLocalStorage;
3720 }
3721 switch (raw.typeName) {
3722 case "SVGAElement":
3723 return new SVGAElementWrappingImplementation._wrap(raw);
3724 case "SVGAltGlyphElement":
3725 return new SVGAltGlyphElementWrappingImplementation._wrap(raw);
3726 case "SVGCursorElement":
3727 return new SVGCursorElementWrappingImplementation._wrap(raw);
3728 case "SVGFEImageElement":
3729 return new SVGFEImageElementWrappingImplementation._wrap(raw);
3730 case "SVGFilterElement":
3731 return new SVGFilterElementWrappingImplementation._wrap(raw);
3732 case "SVGGlyphRefElement":
3733 return new SVGGlyphRefElementWrappingImplementation._wrap(raw);
3734 case "SVGGradientElement":
3735 return new SVGGradientElementWrappingImplementation._wrap(raw);
3736 case "SVGImageElement":
3737 return new SVGImageElementWrappingImplementation._wrap(raw);
3738 case "SVGLinearGradientElement":
3739 return new SVGLinearGradientElementWrappingImplementation._wrap(raw);
3740 case "SVGMPathElement":
3741 return new SVGMPathElementWrappingImplementation._wrap(raw);
3742 case "SVGPatternElement":
3743 return new SVGPatternElementWrappingImplementation._wrap(raw);
3744 case "SVGRadialGradientElement":
3745 return new SVGRadialGradientElementWrappingImplementation._wrap(raw);
3746 case "SVGScriptElement":
3747 return new SVGScriptElementWrappingImplementation._wrap(raw);
3748 case "SVGTRefElement":
3749 return new SVGTRefElementWrappingImplementation._wrap(raw);
3750 case "SVGTextPathElement":
3751 return new SVGTextPathElementWrappingImplementation._wrap(raw);
3752 case "SVGURIReference":
3753 return new SVGURIReferenceWrappingImplementation._wrap(raw);
3754 case "SVGUseElement":
3755 return new SVGUseElementWrappingImplementation._wrap(raw);
3756 default:
3757 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
3758 }
3759 }
3760
3761 static SVGUnitTypes wrapSVGUnitTypes(raw) {
3762 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGUnitTypesWrappingImplementation._wrap(raw);
3763 }
3764
3765 static SVGUseElement wrapSVGUseElement(raw) {
3766 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGUseElementWrappingImplementation._wrap(raw);
3767 }
3768
3769 static SVGVKernElement wrapSVGVKernElement(raw) {
3770 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGVKernElementWrappingImplementation._wrap(raw);
3771 }
3772
3773 static SVGViewElement wrapSVGViewElement(raw) {
3774 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGViewElementWrappingImplementation._wrap(raw);
3775 }
3776
3777 static SVGViewSpec wrapSVGViewSpec(raw) {
3778 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGViewSpecWrappingImplementation._wrap(raw);
3779 }
3780
3781 static SVGZoomAndPan wrapSVGZoomAndPan(raw) {
3782 if (raw === null) { return null; }
3783 if (raw.dartObjectLocalStorage !== null) {
3784 return raw.dartObjectLocalStorage;
3785 }
3786 switch (raw.typeName) {
3787 case "SVGSVGElement":
3788 return new SVGSVGElementWrappingImplementation._wrap(raw);
3789 case "SVGViewElement":
3790 return new SVGViewElementWrappingImplementation._wrap(raw);
3791 case "SVGViewSpec":
3792 return new SVGViewSpecWrappingImplementation._wrap(raw);
3793 case "SVGZoomAndPan":
3794 return new SVGZoomAndPanWrappingImplementation._wrap(raw);
3795 default:
3796 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
3797 }
3798 }
3799
3800 static SVGZoomEvent wrapSVGZoomEvent(raw) {
3801 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SVGZoomEventWrappingImplementation._wrap(raw);
3802 }
3803
1642 static Screen wrapScreen(raw) { 3804 static Screen wrapScreen(raw) {
1643 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ScreenWrappingImplementation._wrap(raw); 3805 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ScreenWrappingImplementation._wrap(raw);
1644 } 3806 }
1645 3807
1646 static ScriptElement wrapScriptElement(raw) { 3808 static ScriptElement wrapScriptElement(raw) {
1647 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ScriptElementWrappingImplementation._wrap(raw); 3809 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new ScriptElementWrappingImplementation._wrap(raw);
1648 } 3810 }
1649 3811
1650 static SelectElement wrapSelectElement(raw) { 3812 static SelectElement wrapSelectElement(raw) {
1651 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SelectElementWrappingImplementation._wrap(raw); 3813 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new SelectElementWrappingImplementation._wrap(raw);
(...skipping 28 matching lines...) Expand all
1680 } 3842 }
1681 3843
1682 static StorageEvent wrapStorageEvent(raw) { 3844 static StorageEvent wrapStorageEvent(raw) {
1683 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new StorageEventWrappingImplementation._wrap(raw); 3845 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new StorageEventWrappingImplementation._wrap(raw);
1684 } 3846 }
1685 3847
1686 static StorageInfo wrapStorageInfo(raw) { 3848 static StorageInfo wrapStorageInfo(raw) {
1687 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new StorageInfoWrappingImplementation._wrap(raw); 3849 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new StorageInfoWrappingImplementation._wrap(raw);
1688 } 3850 }
1689 3851
1690 static StorageInfoErrorCallback wrapStorageInfoErrorCallback(raw) { 3852 // Skipped StorageInfoErrorCallback
1691 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new StorageInfoErrorCallbackWrappingImplementation._wrap(raw ); 3853 // Skipped StorageInfoQuotaCallback
1692 } 3854 // Skipped StorageInfoUsageCallback
1693 3855 // Skipped StringCallback
1694 static StorageInfoQuotaCallback wrapStorageInfoQuotaCallback(raw) {
1695 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new StorageInfoQuotaCallbackWrappingImplementation._wrap(raw );
1696 }
1697
1698 static StorageInfoUsageCallback wrapStorageInfoUsageCallback(raw) {
1699 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new StorageInfoUsageCallbackWrappingImplementation._wrap(raw );
1700 }
1701
1702 static StringCallback wrapStringCallback(raw) {
1703 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new StringCallbackWrappingImplementation._wrap(raw);
1704 }
1705
1706 static StyleElement wrapStyleElement(raw) { 3856 static StyleElement wrapStyleElement(raw) {
1707 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new StyleElementWrappingImplementation._wrap(raw); 3857 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new StyleElementWrappingImplementation._wrap(raw);
1708 } 3858 }
1709 3859
1710 static StyleMedia wrapStyleMedia(raw) { 3860 static StyleMedia wrapStyleMedia(raw) {
1711 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new StyleMediaWrappingImplementation._wrap(raw); 3861 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new StyleMediaWrappingImplementation._wrap(raw);
1712 } 3862 }
1713 3863
1714 static StyleSheet wrapStyleSheet(raw) { 3864 static StyleSheet wrapStyleSheet(raw) {
1715 if (raw === null) { return null; } 3865 if (raw === null) { return null; }
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
1774 } 3924 }
1775 3925
1776 static TextEvent wrapTextEvent(raw) { 3926 static TextEvent wrapTextEvent(raw) {
1777 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new TextEventWrappingImplementation._wrap(raw); 3927 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new TextEventWrappingImplementation._wrap(raw);
1778 } 3928 }
1779 3929
1780 static TextMetrics wrapTextMetrics(raw) { 3930 static TextMetrics wrapTextMetrics(raw) {
1781 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new TextMetricsWrappingImplementation._wrap(raw); 3931 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new TextMetricsWrappingImplementation._wrap(raw);
1782 } 3932 }
1783 3933
3934 static TextTrack wrapTextTrack(raw) {
3935 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new TextTrackWrappingImplementation._wrap(raw);
3936 }
3937
3938 static TextTrackCue wrapTextTrackCue(raw) {
3939 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new TextTrackCueWrappingImplementation._wrap(raw);
3940 }
3941
3942 static TextTrackCueList wrapTextTrackCueList(raw) {
3943 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new TextTrackCueListWrappingImplementation._wrap(raw);
3944 }
3945
1784 static TimeRanges wrapTimeRanges(raw) { 3946 static TimeRanges wrapTimeRanges(raw) {
1785 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new TimeRangesWrappingImplementation._wrap(raw); 3947 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new TimeRangesWrappingImplementation._wrap(raw);
1786 } 3948 }
1787 3949
1788 static TitleElement wrapTitleElement(raw) { 3950 static TitleElement wrapTitleElement(raw) {
1789 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new TitleElementWrappingImplementation._wrap(raw); 3951 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new TitleElementWrappingImplementation._wrap(raw);
1790 } 3952 }
1791 3953
1792 static Touch wrapTouch(raw) { 3954 static Touch wrapTouch(raw) {
1793 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new TouchWrappingImplementation._wrap(raw); 3955 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new TouchWrappingImplementation._wrap(raw);
(...skipping 20 matching lines...) Expand all
1814 if (raw.dartObjectLocalStorage !== null) { 3976 if (raw.dartObjectLocalStorage !== null) {
1815 return raw.dartObjectLocalStorage; 3977 return raw.dartObjectLocalStorage;
1816 } 3978 }
1817 switch (raw.typeName) { 3979 switch (raw.typeName) {
1818 case "CompositionEvent": 3980 case "CompositionEvent":
1819 return new CompositionEventWrappingImplementation._wrap(raw); 3981 return new CompositionEventWrappingImplementation._wrap(raw);
1820 case "KeyboardEvent": 3982 case "KeyboardEvent":
1821 return new KeyboardEventWrappingImplementation._wrap(raw); 3983 return new KeyboardEventWrappingImplementation._wrap(raw);
1822 case "MouseEvent": 3984 case "MouseEvent":
1823 return new MouseEventWrappingImplementation._wrap(raw); 3985 return new MouseEventWrappingImplementation._wrap(raw);
3986 case "SVGZoomEvent":
3987 return new SVGZoomEventWrappingImplementation._wrap(raw);
1824 case "TextEvent": 3988 case "TextEvent":
1825 return new TextEventWrappingImplementation._wrap(raw); 3989 return new TextEventWrappingImplementation._wrap(raw);
1826 case "TouchEvent": 3990 case "TouchEvent":
1827 return new TouchEventWrappingImplementation._wrap(raw); 3991 return new TouchEventWrappingImplementation._wrap(raw);
1828 case "UIEvent": 3992 case "UIEvent":
1829 return new UIEventWrappingImplementation._wrap(raw); 3993 return new UIEventWrappingImplementation._wrap(raw);
1830 case "WheelEvent": 3994 case "WheelEvent":
1831 return new WheelEventWrappingImplementation._wrap(raw); 3995 return new WheelEventWrappingImplementation._wrap(raw);
1832 default: 3996 default:
1833 throw new UnsupportedOperationException("Unknown type:" + raw.toString() ); 3997 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
(...skipping 25 matching lines...) Expand all
1859 } 4023 }
1860 4024
1861 static VideoElement wrapVideoElement(raw) { 4025 static VideoElement wrapVideoElement(raw) {
1862 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new VideoElementWrappingImplementation._wrap(raw); 4026 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new VideoElementWrappingImplementation._wrap(raw);
1863 } 4027 }
1864 4028
1865 static VoidCallback wrapVoidCallback(raw) { 4029 static VoidCallback wrapVoidCallback(raw) {
1866 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new VoidCallbackWrappingImplementation._wrap(raw); 4030 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new VoidCallbackWrappingImplementation._wrap(raw);
1867 } 4031 }
1868 4032
4033 static WaveShaperNode wrapWaveShaperNode(raw) {
4034 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WaveShaperNodeWrappingImplementation._wrap(raw);
4035 }
4036
1869 static WebGLActiveInfo wrapWebGLActiveInfo(raw) { 4037 static WebGLActiveInfo wrapWebGLActiveInfo(raw) {
1870 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebGLActiveInfoWrappingImplementation._wrap(raw); 4038 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebGLActiveInfoWrappingImplementation._wrap(raw);
1871 } 4039 }
1872 4040
1873 static WebGLBuffer wrapWebGLBuffer(raw) { 4041 static WebGLBuffer wrapWebGLBuffer(raw) {
1874 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebGLBufferWrappingImplementation._wrap(raw); 4042 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebGLBufferWrappingImplementation._wrap(raw);
1875 } 4043 }
1876 4044
1877 static WebGLContextAttributes wrapWebGLContextAttributes(raw) { 4045 static WebGLContextAttributes wrapWebGLContextAttributes(raw) {
1878 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebGLContextAttributesWrappingImplementation._wrap(raw); 4046 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebGLContextAttributesWrappingImplementation._wrap(raw);
1879 } 4047 }
1880 4048
1881 static WebGLContextEvent wrapWebGLContextEvent(raw) { 4049 static WebGLContextEvent wrapWebGLContextEvent(raw) {
1882 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebGLContextEventWrappingImplementation._wrap(raw); 4050 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebGLContextEventWrappingImplementation._wrap(raw);
1883 } 4051 }
1884 4052
4053 static WebGLDebugRendererInfo wrapWebGLDebugRendererInfo(raw) {
4054 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebGLDebugRendererInfoWrappingImplementation._wrap(raw);
4055 }
4056
4057 static WebGLDebugShaders wrapWebGLDebugShaders(raw) {
4058 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebGLDebugShadersWrappingImplementation._wrap(raw);
4059 }
4060
1885 static WebGLFramebuffer wrapWebGLFramebuffer(raw) { 4061 static WebGLFramebuffer wrapWebGLFramebuffer(raw) {
1886 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebGLFramebufferWrappingImplementation._wrap(raw); 4062 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebGLFramebufferWrappingImplementation._wrap(raw);
1887 } 4063 }
1888 4064
1889 static WebGLProgram wrapWebGLProgram(raw) { 4065 static WebGLProgram wrapWebGLProgram(raw) {
1890 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebGLProgramWrappingImplementation._wrap(raw); 4066 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebGLProgramWrappingImplementation._wrap(raw);
1891 } 4067 }
1892 4068
1893 static WebGLRenderbuffer wrapWebGLRenderbuffer(raw) { 4069 static WebGLRenderbuffer wrapWebGLRenderbuffer(raw) {
1894 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebGLRenderbufferWrappingImplementation._wrap(raw); 4070 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebGLRenderbufferWrappingImplementation._wrap(raw);
(...skipping 12 matching lines...) Expand all
1907 } 4083 }
1908 4084
1909 static WebGLUniformLocation wrapWebGLUniformLocation(raw) { 4085 static WebGLUniformLocation wrapWebGLUniformLocation(raw) {
1910 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebGLUniformLocationWrappingImplementation._wrap(raw); 4086 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebGLUniformLocationWrappingImplementation._wrap(raw);
1911 } 4087 }
1912 4088
1913 static WebGLVertexArrayObjectOES wrapWebGLVertexArrayObjectOES(raw) { 4089 static WebGLVertexArrayObjectOES wrapWebGLVertexArrayObjectOES(raw) {
1914 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebGLVertexArrayObjectOESWrappingImplementation._wrap(ra w); 4090 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebGLVertexArrayObjectOESWrappingImplementation._wrap(ra w);
1915 } 4091 }
1916 4092
4093 static WebKitCSSFilterValue wrapWebKitCSSFilterValue(raw) {
4094 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebKitCSSFilterValueWrappingImplementation._wrap(raw);
4095 }
4096
4097 static WebKitMutationObserver wrapWebKitMutationObserver(raw) {
4098 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebKitMutationObserverWrappingImplementation._wrap(raw);
4099 }
4100
1917 static WebSocket wrapWebSocket(raw) { 4101 static WebSocket wrapWebSocket(raw) {
1918 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebSocketWrappingImplementation._wrap(raw); 4102 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WebSocketWrappingImplementation._wrap(raw);
1919 } 4103 }
1920 4104
1921 static WheelEvent wrapWheelEvent(raw) { 4105 static WheelEvent wrapWheelEvent(raw) {
1922 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WheelEventWrappingImplementation._wrap(raw); 4106 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WheelEventWrappingImplementation._wrap(raw);
1923 } 4107 }
1924 4108
1925 static Window wrapWindow(raw) { 4109 static Window wrapWindow(raw) {
1926 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WindowWrappingImplementation._wrap(raw); 4110 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new WindowWrappingImplementation._wrap(raw);
(...skipping 12 matching lines...) Expand all
1939 } 4123 }
1940 4124
1941 static XMLHttpRequestProgressEvent wrapXMLHttpRequestProgressEvent(raw) { 4125 static XMLHttpRequestProgressEvent wrapXMLHttpRequestProgressEvent(raw) {
1942 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new XMLHttpRequestProgressEventWrappingImplementation._wrap( raw); 4126 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new XMLHttpRequestProgressEventWrappingImplementation._wrap( raw);
1943 } 4127 }
1944 4128
1945 static XMLHttpRequestUpload wrapXMLHttpRequestUpload(raw) { 4129 static XMLHttpRequestUpload wrapXMLHttpRequestUpload(raw) {
1946 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new XMLHttpRequestUploadWrappingImplementation._wrap(raw); 4130 return raw === null ? null : raw.dartObjectLocalStorage !== null ? raw.dartO bjectLocalStorage : new XMLHttpRequestUploadWrappingImplementation._wrap(raw);
1947 } 4131 }
1948 4132
4133 static Object wrapObject(raw) {
4134 if (raw === null || raw is String || raw is num || raw is Date) { return raw ; }
4135 if (raw.dartObjectLocalStorage !== null) {
4136 return raw.dartObjectLocalStorage;
4137 }
4138 switch (raw.typeName) {
4139 /* Skipping AbstractWorker*/
4140 case "HTMLAnchorElement":
4141 return new AnchorElementWrappingImplementation._wrap(raw);
4142 case "WebKitAnimation":
4143 return new AnimationWrappingImplementation._wrap(raw);
4144 case "WebKitAnimationEvent":
4145 return new AnimationEventWrappingImplementation._wrap(raw);
4146 case "WebKitAnimationList":
4147 return new AnimationListWrappingImplementation._wrap(raw);
4148 /* Skipping HTMLAppletElement*/
4149 case "HTMLAreaElement":
4150 return new AreaElementWrappingImplementation._wrap(raw);
4151 case "ArrayBuffer":
4152 return new ArrayBufferWrappingImplementation._wrap(raw);
4153 case "ArrayBufferView":
4154 return new ArrayBufferViewWrappingImplementation._wrap(raw);
4155 /* Skipping Attr*/
4156 case "AudioBuffer":
4157 return new AudioBufferWrappingImplementation._wrap(raw);
4158 /* Skipping AudioBufferCallback*/
4159 case "AudioBufferSourceNode":
4160 return new AudioBufferSourceNodeWrappingImplementation._wrap(raw);
4161 case "AudioChannelMerger":
4162 return new AudioChannelMergerWrappingImplementation._wrap(raw);
4163 case "AudioChannelSplitter":
4164 return new AudioChannelSplitterWrappingImplementation._wrap(raw);
4165 case "AudioContext":
4166 return new AudioContextWrappingImplementation._wrap(raw);
4167 case "AudioDestinationNode":
4168 return new AudioDestinationNodeWrappingImplementation._wrap(raw);
4169 case "HTMLAudioElement":
4170 return new AudioElementWrappingImplementation._wrap(raw);
4171 case "AudioGain":
4172 return new AudioGainWrappingImplementation._wrap(raw);
4173 case "AudioGainNode":
4174 return new AudioGainNodeWrappingImplementation._wrap(raw);
4175 case "AudioListener":
4176 return new AudioListenerWrappingImplementation._wrap(raw);
4177 case "AudioNode":
4178 return new AudioNodeWrappingImplementation._wrap(raw);
4179 case "AudioPannerNode":
4180 return new AudioPannerNodeWrappingImplementation._wrap(raw);
4181 case "AudioParam":
4182 return new AudioParamWrappingImplementation._wrap(raw);
4183 case "AudioProcessingEvent":
4184 return new AudioProcessingEventWrappingImplementation._wrap(raw);
4185 case "AudioSourceNode":
4186 return new AudioSourceNodeWrappingImplementation._wrap(raw);
4187 case "HTMLBRElement":
4188 return new BRElementWrappingImplementation._wrap(raw);
4189 case "BarInfo":
4190 return new BarInfoWrappingImplementation._wrap(raw);
4191 case "HTMLBaseElement":
4192 return new BaseElementWrappingImplementation._wrap(raw);
4193 /* Skipping HTMLBaseFontElement*/
4194 case "BeforeLoadEvent":
4195 return new BeforeLoadEventWrappingImplementation._wrap(raw);
4196 case "BiquadFilterNode":
4197 return new BiquadFilterNodeWrappingImplementation._wrap(raw);
4198 case "Blob":
4199 return new BlobWrappingImplementation._wrap(raw);
4200 case "WebKitBlobBuilder":
4201 return new BlobBuilderWrappingImplementation._wrap(raw);
4202 case "HTMLBodyElement":
4203 return new BodyElementWrappingImplementation._wrap(raw);
4204 case "HTMLButtonElement":
4205 return new ButtonElementWrappingImplementation._wrap(raw);
4206 case "CDATASection":
4207 return new CDATASectionWrappingImplementation._wrap(raw);
4208 case "CSSCharsetRule":
4209 return new CSSCharsetRuleWrappingImplementation._wrap(raw);
4210 case "CSSFontFaceRule":
4211 return new CSSFontFaceRuleWrappingImplementation._wrap(raw);
4212 case "CSSImportRule":
4213 return new CSSImportRuleWrappingImplementation._wrap(raw);
4214 case "WebKitCSSKeyframeRule":
4215 return new CSSKeyframeRuleWrappingImplementation._wrap(raw);
4216 case "WebKitCSSKeyframesRule":
4217 return new CSSKeyframesRuleWrappingImplementation._wrap(raw);
4218 case "WebKitCSSMatrix":
4219 return new CSSMatrixWrappingImplementation._wrap(raw);
4220 case "CSSMediaRule":
4221 return new CSSMediaRuleWrappingImplementation._wrap(raw);
4222 case "CSSPageRule":
4223 return new CSSPageRuleWrappingImplementation._wrap(raw);
4224 case "CSSPrimitiveValue":
4225 return new CSSPrimitiveValueWrappingImplementation._wrap(raw);
4226 case "CSSRule":
4227 return new CSSRuleWrappingImplementation._wrap(raw);
4228 case "CSSRuleList":
4229 return new CSSRuleListWrappingImplementation._wrap(raw);
4230 case "CSSStyleDeclaration":
4231 return new CSSStyleDeclarationWrappingImplementation._wrap(raw);
4232 case "CSSStyleRule":
4233 return new CSSStyleRuleWrappingImplementation._wrap(raw);
4234 case "CSSStyleSheet":
4235 return new CSSStyleSheetWrappingImplementation._wrap(raw);
4236 case "WebKitCSSTransformValue":
4237 return new CSSTransformValueWrappingImplementation._wrap(raw);
4238 case "CSSUnknownRule":
4239 return new CSSUnknownRuleWrappingImplementation._wrap(raw);
4240 case "CSSValue":
4241 return new CSSValueWrappingImplementation._wrap(raw);
4242 case "CSSValueList":
4243 return new CSSValueListWrappingImplementation._wrap(raw);
4244 case "HTMLCanvasElement":
4245 return new CanvasElementWrappingImplementation._wrap(raw);
4246 case "CanvasGradient":
4247 return new CanvasGradientWrappingImplementation._wrap(raw);
4248 case "CanvasPattern":
4249 return new CanvasPatternWrappingImplementation._wrap(raw);
4250 case "CanvasPixelArray":
4251 return new CanvasPixelArrayWrappingImplementation._wrap(raw);
4252 case "CanvasRenderingContext":
4253 return new CanvasRenderingContextWrappingImplementation._wrap(raw);
4254 case "CanvasRenderingContext2D":
4255 return new CanvasRenderingContext2DWrappingImplementation._wrap(raw);
4256 case "CharacterData":
4257 return new CharacterDataWrappingImplementation._wrap(raw);
4258 case "ClientRect":
4259 return new ClientRectWrappingImplementation._wrap(raw);
4260 case "ClientRectList":
4261 return new ClientRectListWrappingImplementation._wrap(raw);
4262 case "Clipboard":
4263 return new ClipboardWrappingImplementation._wrap(raw);
4264 case "CloseEvent":
4265 return new CloseEventWrappingImplementation._wrap(raw);
4266 case "Comment":
4267 return new CommentWrappingImplementation._wrap(raw);
4268 case "CompositionEvent":
4269 return new CompositionEventWrappingImplementation._wrap(raw);
4270 case "Console":
4271 return new ConsoleWrappingImplementation._wrap(raw);
4272 case "ConvolverNode":
4273 return new ConvolverNodeWrappingImplementation._wrap(raw);
4274 case "Coordinates":
4275 return new CoordinatesWrappingImplementation._wrap(raw);
4276 case "Counter":
4277 return new CounterWrappingImplementation._wrap(raw);
4278 case "Crypto":
4279 return new CryptoWrappingImplementation._wrap(raw);
4280 case "CustomEvent":
4281 return new CustomEventWrappingImplementation._wrap(raw);
4282 case "HTMLDListElement":
4283 return new DListElementWrappingImplementation._wrap(raw);
4284 case "DOMApplicationCache":
4285 return new DOMApplicationCacheWrappingImplementation._wrap(raw);
4286 case "DOMException":
4287 return new DOMExceptionWrappingImplementation._wrap(raw);
4288 case "DOMFileSystem":
4289 return new DOMFileSystemWrappingImplementation._wrap(raw);
4290 case "DOMFileSystemSync":
4291 return new DOMFileSystemSyncWrappingImplementation._wrap(raw);
4292 case "DOMFormData":
4293 return new DOMFormDataWrappingImplementation._wrap(raw);
4294 /* Skipping DOMImplementation*/
4295 case "DOMMimeType":
4296 return new DOMMimeTypeWrappingImplementation._wrap(raw);
4297 case "DOMMimeTypeArray":
4298 return new DOMMimeTypeArrayWrappingImplementation._wrap(raw);
4299 case "DOMParser":
4300 return new DOMParserWrappingImplementation._wrap(raw);
4301 case "DOMPlugin":
4302 return new DOMPluginWrappingImplementation._wrap(raw);
4303 case "DOMPluginArray":
4304 return new DOMPluginArrayWrappingImplementation._wrap(raw);
4305 case "DOMSelection":
4306 return new DOMSelectionWrappingImplementation._wrap(raw);
4307 case "DOMSettableTokenList":
4308 return new DOMSettableTokenListWrappingImplementation._wrap(raw);
4309 case "DOMTokenList":
4310 return new DOMTokenListWrappingImplementation._wrap(raw);
4311 case "DOMURL":
4312 return new DOMURLWrappingImplementation._wrap(raw);
4313 case "HTMLDataListElement":
4314 return new DataListElementWrappingImplementation._wrap(raw);
4315 case "DataTransferItem":
4316 return new DataTransferItemWrappingImplementation._wrap(raw);
4317 case "DataTransferItemList":
4318 return new DataTransferItemListWrappingImplementation._wrap(raw);
4319 case "DataView":
4320 return new DataViewWrappingImplementation._wrap(raw);
4321 /* Skipping Database*/
4322 /* Skipping DatabaseCallback*/
4323 /* Skipping DatabaseSync*/
4324 /* Skipping DedicatedWorkerContext*/
4325 case "DelayNode":
4326 return new DelayNodeWrappingImplementation._wrap(raw);
4327 case "HTMLDetailsElement":
4328 return new DetailsElementWrappingImplementation._wrap(raw);
4329 case "DeviceMotionEvent":
4330 return new DeviceMotionEventWrappingImplementation._wrap(raw);
4331 case "DeviceOrientationEvent":
4332 return new DeviceOrientationEventWrappingImplementation._wrap(raw);
4333 /* Skipping HTMLDirectoryElement*/
4334 case "DirectoryEntry":
4335 return new DirectoryEntryWrappingImplementation._wrap(raw);
4336 case "DirectoryEntrySync":
4337 return new DirectoryEntrySyncWrappingImplementation._wrap(raw);
4338 case "DirectoryReader":
4339 return new DirectoryReaderWrappingImplementation._wrap(raw);
4340 case "DirectoryReaderSync":
4341 return new DirectoryReaderSyncWrappingImplementation._wrap(raw);
4342 case "HTMLDivElement":
4343 return new DivElementWrappingImplementation._wrap(raw);
4344 case "HTMLDocument":
4345 return new DocumentWrappingImplementation._wrap(raw, raw.documentElement );
4346 case "DocumentFragment":
4347 return new DocumentFragmentWrappingImplementation._wrap(raw);
4348 /* Skipping DocumentType*/
4349 case "DynamicsCompressorNode":
4350 return new DynamicsCompressorNodeWrappingImplementation._wrap(raw);
4351 case "HTMLElement":
4352 return new ElementWrappingImplementation._wrap(raw);
4353 /* Skipping HTMLOptionsCollection*/
4354 case "ElementTimeControl":
4355 return new ElementTimeControlWrappingImplementation._wrap(raw);
4356 /* Skipping ElementTraversal*/
4357 case "HTMLEmbedElement":
4358 return new EmbedElementWrappingImplementation._wrap(raw);
4359 case "Entity":
4360 return new EntityWrappingImplementation._wrap(raw);
4361 case "EntityReference":
4362 return new EntityReferenceWrappingImplementation._wrap(raw);
4363 /* Skipping EntriesCallback*/
4364 case "Entry":
4365 return new EntryWrappingImplementation._wrap(raw);
4366 case "EntryArray":
4367 return new EntryArrayWrappingImplementation._wrap(raw);
4368 case "EntryArraySync":
4369 return new EntryArraySyncWrappingImplementation._wrap(raw);
4370 /* Skipping EntryCallback*/
4371 case "EntrySync":
4372 return new EntrySyncWrappingImplementation._wrap(raw);
4373 /* Skipping ErrorCallback*/
4374 case "ErrorEvent":
4375 return new ErrorEventWrappingImplementation._wrap(raw);
4376 case "Event":
4377 return new EventWrappingImplementation._wrap(raw);
4378 case "EventException":
4379 return new EventExceptionWrappingImplementation._wrap(raw);
4380 /* Skipping EventListener*/
4381 case "EventSource":
4382 return new EventSourceWrappingImplementation._wrap(raw);
4383 case "EventTarget":
4384 return new EventTargetWrappingImplementation._wrap(raw);
4385 case "HTMLFieldSetElement":
4386 return new FieldSetElementWrappingImplementation._wrap(raw);
4387 case "File":
4388 return new FileWrappingImplementation._wrap(raw);
4389 /* Skipping FileCallback*/
4390 case "FileEntry":
4391 return new FileEntryWrappingImplementation._wrap(raw);
4392 case "FileEntrySync":
4393 return new FileEntrySyncWrappingImplementation._wrap(raw);
4394 case "FileError":
4395 return new FileErrorWrappingImplementation._wrap(raw);
4396 case "FileException":
4397 return new FileExceptionWrappingImplementation._wrap(raw);
4398 case "FileList":
4399 return new FileListWrappingImplementation._wrap(raw);
4400 case "FileReader":
4401 return new FileReaderWrappingImplementation._wrap(raw);
4402 case "FileReaderSync":
4403 return new FileReaderSyncWrappingImplementation._wrap(raw);
4404 /* Skipping FileSystemCallback*/
4405 case "FileWriter":
4406 return new FileWriterWrappingImplementation._wrap(raw);
4407 /* Skipping FileWriterCallback*/
4408 case "FileWriterSync":
4409 return new FileWriterSyncWrappingImplementation._wrap(raw);
4410 case "WebKitFlags":
4411 return new FlagsWrappingImplementation._wrap(raw);
4412 case "Float32Array":
4413 return new Float32ArrayWrappingImplementation._wrap(raw);
4414 case "Float64Array":
4415 return new Float64ArrayWrappingImplementation._wrap(raw);
4416 case "HTMLFontElement":
4417 return new FontElementWrappingImplementation._wrap(raw);
4418 case "HTMLFormElement":
4419 return new FormElementWrappingImplementation._wrap(raw);
4420 /* Skipping HTMLFrameElement*/
4421 /* Skipping HTMLFrameSetElement*/
4422 case "Geolocation":
4423 return new GeolocationWrappingImplementation._wrap(raw);
4424 case "Geoposition":
4425 return new GeopositionWrappingImplementation._wrap(raw);
4426 case "HTMLHRElement":
4427 return new HRElementWrappingImplementation._wrap(raw);
4428 case "HTMLAllCollection":
4429 return new HTMLAllCollectionWrappingImplementation._wrap(raw);
4430 case "HashChangeEvent":
4431 return new HashChangeEventWrappingImplementation._wrap(raw);
4432 case "HTMLHeadElement":
4433 return new HeadElementWrappingImplementation._wrap(raw);
4434 case "HTMLHeadingElement":
4435 return new HeadingElementWrappingImplementation._wrap(raw);
4436 case "HighPass2FilterNode":
4437 return new HighPass2FilterNodeWrappingImplementation._wrap(raw);
4438 case "History":
4439 return new HistoryWrappingImplementation._wrap(raw);
4440 case "HTMLHtmlElement":
4441 return new DocumentWrappingImplementation._wrap(raw.parentNode, raw);
4442 case "IDBAny":
4443 return new IDBAnyWrappingImplementation._wrap(raw);
4444 case "IDBCursor":
4445 return new IDBCursorWrappingImplementation._wrap(raw);
4446 case "IDBCursorWithValue":
4447 return new IDBCursorWithValueWrappingImplementation._wrap(raw);
4448 case "IDBDatabase":
4449 return new IDBDatabaseWrappingImplementation._wrap(raw);
4450 case "IDBDatabaseError":
4451 return new IDBDatabaseErrorWrappingImplementation._wrap(raw);
4452 case "IDBDatabaseException":
4453 return new IDBDatabaseExceptionWrappingImplementation._wrap(raw);
4454 case "IDBFactory":
4455 return new IDBFactoryWrappingImplementation._wrap(raw);
4456 case "IDBIndex":
4457 return new IDBIndexWrappingImplementation._wrap(raw);
4458 case "IDBKey":
4459 return new IDBKeyWrappingImplementation._wrap(raw);
4460 case "IDBKeyRange":
4461 return new IDBKeyRangeWrappingImplementation._wrap(raw);
4462 case "IDBObjectStore":
4463 return new IDBObjectStoreWrappingImplementation._wrap(raw);
4464 case "IDBRequest":
4465 return new IDBRequestWrappingImplementation._wrap(raw);
4466 case "IDBTransaction":
4467 return new IDBTransactionWrappingImplementation._wrap(raw);
4468 case "IDBVersionChangeEvent":
4469 return new IDBVersionChangeEventWrappingImplementation._wrap(raw);
4470 case "IDBVersionChangeRequest":
4471 return new IDBVersionChangeRequestWrappingImplementation._wrap(raw);
4472 case "HTMLIFrameElement":
4473 return new IFrameElementWrappingImplementation._wrap(raw);
4474 case "ImageData":
4475 return new ImageDataWrappingImplementation._wrap(raw);
4476 case "HTMLImageElement":
4477 return new ImageElementWrappingImplementation._wrap(raw);
4478 /* Skipping InjectedScriptHost*/
4479 case "HTMLInputElement":
4480 return new InputElementWrappingImplementation._wrap(raw);
4481 /* Skipping InspectorFrontendHost*/
4482 case "Int16Array":
4483 return new Int16ArrayWrappingImplementation._wrap(raw);
4484 case "Int32Array":
4485 return new Int32ArrayWrappingImplementation._wrap(raw);
4486 case "Int8Array":
4487 return new Int8ArrayWrappingImplementation._wrap(raw);
4488 /* Skipping HTMLIsIndexElement*/
4489 case "JavaScriptAudioNode":
4490 return new JavaScriptAudioNodeWrappingImplementation._wrap(raw);
4491 /* Skipping JavaScriptCallFrame*/
4492 case "KeyboardEvent":
4493 return new KeyboardEventWrappingImplementation._wrap(raw);
4494 case "HTMLKeygenElement":
4495 return new KeygenElementWrappingImplementation._wrap(raw);
4496 case "HTMLLIElement":
4497 return new LIElementWrappingImplementation._wrap(raw);
4498 case "HTMLLabelElement":
4499 return new LabelElementWrappingImplementation._wrap(raw);
4500 case "HTMLLegendElement":
4501 return new LegendElementWrappingImplementation._wrap(raw);
4502 case "HTMLLinkElement":
4503 return new LinkElementWrappingImplementation._wrap(raw);
4504 case "Location":
4505 return new LocationWrappingImplementation._wrap(raw);
4506 case "WebKitLoseContext":
4507 return new LoseContextWrappingImplementation._wrap(raw);
4508 case "LowPass2FilterNode":
4509 return new LowPass2FilterNodeWrappingImplementation._wrap(raw);
4510 case "HTMLMapElement":
4511 return new MapElementWrappingImplementation._wrap(raw);
4512 case "HTMLMarqueeElement":
4513 return new MarqueeElementWrappingImplementation._wrap(raw);
4514 case "HTMLMediaElement":
4515 return new MediaElementWrappingImplementation._wrap(raw);
4516 case "MediaElementAudioSourceNode":
4517 return new MediaElementAudioSourceNodeWrappingImplementation._wrap(raw);
4518 case "MediaError":
4519 return new MediaErrorWrappingImplementation._wrap(raw);
4520 case "MediaList":
4521 return new MediaListWrappingImplementation._wrap(raw);
4522 case "MediaQueryList":
4523 return new MediaQueryListWrappingImplementation._wrap(raw);
4524 case "MediaQueryListListener":
4525 return new MediaQueryListListenerWrappingImplementation._wrap(raw);
4526 /* Skipping MemoryInfo*/
4527 case "HTMLMenuElement":
4528 return new MenuElementWrappingImplementation._wrap(raw);
4529 case "MessageChannel":
4530 return new MessageChannelWrappingImplementation._wrap(raw);
4531 case "MessageEvent":
4532 return new MessageEventWrappingImplementation._wrap(raw);
4533 case "MessagePort":
4534 return new MessagePortWrappingImplementation._wrap(raw);
4535 case "HTMLMetaElement":
4536 return new MetaElementWrappingImplementation._wrap(raw);
4537 case "Metadata":
4538 return new MetadataWrappingImplementation._wrap(raw);
4539 /* Skipping MetadataCallback*/
4540 case "HTMLMeterElement":
4541 return new MeterElementWrappingImplementation._wrap(raw);
4542 case "HTMLModElement":
4543 return new ModElementWrappingImplementation._wrap(raw);
4544 case "MouseEvent":
4545 return new MouseEventWrappingImplementation._wrap(raw);
4546 case "MutationCallback":
4547 return new MutationCallbackWrappingImplementation._wrap(raw);
4548 case "MutationEvent":
4549 return new MutationEventWrappingImplementation._wrap(raw);
4550 case "MutationRecord":
4551 return new MutationRecordWrappingImplementation._wrap(raw);
4552 /* Skipping NamedNodeMap*/
4553 case "Navigator":
4554 return new NavigatorWrappingImplementation._wrap(raw);
4555 case "NavigatorUserMediaError":
4556 return new NavigatorUserMediaErrorWrappingImplementation._wrap(raw);
4557 /* Skipping NavigatorUserMediaErrorCallback*/
4558 case "NavigatorUserMediaSuccessCallback":
4559 return new NavigatorUserMediaSuccessCallbackWrappingImplementation._wrap (raw);
4560 case "Node":
4561 return new NodeWrappingImplementation._wrap(raw);
4562 /* Skipping NodeFilter*/
4563 /* Skipping NodeIterator*/
4564 /* Skipping NodeSelector*/
4565 case "Notation":
4566 return new NotationWrappingImplementation._wrap(raw);
4567 case "Notification":
4568 return new NotificationWrappingImplementation._wrap(raw);
4569 case "NotificationCenter":
4570 return new NotificationCenterWrappingImplementation._wrap(raw);
4571 case "OESStandardDerivatives":
4572 return new OESStandardDerivativesWrappingImplementation._wrap(raw);
4573 case "OESTextureFloat":
4574 return new OESTextureFloatWrappingImplementation._wrap(raw);
4575 case "OESVertexArrayObject":
4576 return new OESVertexArrayObjectWrappingImplementation._wrap(raw);
4577 case "HTMLOListElement":
4578 return new OListElementWrappingImplementation._wrap(raw);
4579 case "HTMLObjectElement":
4580 return new ObjectElementWrappingImplementation._wrap(raw);
4581 case "OfflineAudioCompletionEvent":
4582 return new OfflineAudioCompletionEventWrappingImplementation._wrap(raw);
4583 case "OperationNotAllowedException":
4584 return new OperationNotAllowedExceptionWrappingImplementation._wrap(raw) ;
4585 case "HTMLOptGroupElement":
4586 return new OptGroupElementWrappingImplementation._wrap(raw);
4587 case "HTMLOptionElement":
4588 return new OptionElementWrappingImplementation._wrap(raw);
4589 case "HTMLOutputElement":
4590 return new OutputElementWrappingImplementation._wrap(raw);
4591 case "OverflowEvent":
4592 return new OverflowEventWrappingImplementation._wrap(raw);
4593 case "PageTransitionEvent":
4594 return new PageTransitionEventWrappingImplementation._wrap(raw);
4595 case "HTMLParagraphElement":
4596 return new ParagraphElementWrappingImplementation._wrap(raw);
4597 case "HTMLParamElement":
4598 return new ParamElementWrappingImplementation._wrap(raw);
4599 /* Skipping Performance*/
4600 /* Skipping PerformanceNavigation*/
4601 /* Skipping PerformanceTiming*/
4602 case "WebKitPoint":
4603 return new PointWrappingImplementation._wrap(raw);
4604 case "PopStateEvent":
4605 return new PopStateEventWrappingImplementation._wrap(raw);
4606 /* Skipping PositionCallback*/
4607 case "PositionError":
4608 return new PositionErrorWrappingImplementation._wrap(raw);
4609 /* Skipping PositionErrorCallback*/
4610 case "HTMLPreElement":
4611 return new PreElementWrappingImplementation._wrap(raw);
4612 case "ProcessingInstruction":
4613 return new ProcessingInstructionWrappingImplementation._wrap(raw);
4614 case "HTMLProgressElement":
4615 return new ProgressElementWrappingImplementation._wrap(raw);
4616 case "ProgressEvent":
4617 return new ProgressEventWrappingImplementation._wrap(raw);
4618 case "HTMLQuoteElement":
4619 return new QuoteElementWrappingImplementation._wrap(raw);
4620 case "RGBColor":
4621 return new RGBColorWrappingImplementation._wrap(raw);
4622 case "Range":
4623 return new RangeWrappingImplementation._wrap(raw);
4624 case "RangeException":
4625 return new RangeExceptionWrappingImplementation._wrap(raw);
4626 case "RealtimeAnalyserNode":
4627 return new RealtimeAnalyserNodeWrappingImplementation._wrap(raw);
4628 case "Rect":
4629 return new RectWrappingImplementation._wrap(raw);
4630 /* Skipping RequestAnimationFrameCallback*/
4631 /* Skipping SQLError*/
4632 /* Skipping SQLException*/
4633 /* Skipping SQLResultSet*/
4634 /* Skipping SQLResultSetRowList*/
4635 /* Skipping SQLStatementCallback*/
4636 /* Skipping SQLStatementErrorCallback*/
4637 /* Skipping SQLTransaction*/
4638 /* Skipping SQLTransactionCallback*/
4639 /* Skipping SQLTransactionErrorCallback*/
4640 /* Skipping SQLTransactionSync*/
4641 /* Skipping SQLTransactionSyncCallback*/
4642 case "SVGAElement":
4643 return new SVGAElementWrappingImplementation._wrap(raw);
4644 case "SVGAltGlyphDefElement":
4645 return new SVGAltGlyphDefElementWrappingImplementation._wrap(raw);
4646 case "SVGAltGlyphElement":
4647 return new SVGAltGlyphElementWrappingImplementation._wrap(raw);
4648 case "SVGAltGlyphItemElement":
4649 return new SVGAltGlyphItemElementWrappingImplementation._wrap(raw);
4650 case "SVGAngle":
4651 return new SVGAngleWrappingImplementation._wrap(raw);
4652 case "SVGAnimateColorElement":
4653 return new SVGAnimateColorElementWrappingImplementation._wrap(raw);
4654 case "SVGAnimateElement":
4655 return new SVGAnimateElementWrappingImplementation._wrap(raw);
4656 case "SVGAnimateMotionElement":
4657 return new SVGAnimateMotionElementWrappingImplementation._wrap(raw);
4658 case "SVGAnimateTransformElement":
4659 return new SVGAnimateTransformElementWrappingImplementation._wrap(raw);
4660 case "SVGAnimatedAngle":
4661 return new SVGAnimatedAngleWrappingImplementation._wrap(raw);
4662 case "SVGAnimatedBoolean":
4663 return new SVGAnimatedBooleanWrappingImplementation._wrap(raw);
4664 case "SVGAnimatedEnumeration":
4665 return new SVGAnimatedEnumerationWrappingImplementation._wrap(raw);
4666 case "SVGAnimatedInteger":
4667 return new SVGAnimatedIntegerWrappingImplementation._wrap(raw);
4668 case "SVGAnimatedLength":
4669 return new SVGAnimatedLengthWrappingImplementation._wrap(raw);
4670 case "SVGAnimatedLengthList":
4671 return new SVGAnimatedLengthListWrappingImplementation._wrap(raw);
4672 case "SVGAnimatedNumber":
4673 return new SVGAnimatedNumberWrappingImplementation._wrap(raw);
4674 case "SVGAnimatedNumberList":
4675 return new SVGAnimatedNumberListWrappingImplementation._wrap(raw);
4676 case "SVGAnimatedPreserveAspectRatio":
4677 return new SVGAnimatedPreserveAspectRatioWrappingImplementation._wrap(ra w);
4678 case "SVGAnimatedRect":
4679 return new SVGAnimatedRectWrappingImplementation._wrap(raw);
4680 case "SVGAnimatedString":
4681 return new SVGAnimatedStringWrappingImplementation._wrap(raw);
4682 case "SVGAnimatedTransformList":
4683 return new SVGAnimatedTransformListWrappingImplementation._wrap(raw);
4684 case "SVGAnimationElement":
4685 return new SVGAnimationElementWrappingImplementation._wrap(raw);
4686 case "SVGCircleElement":
4687 return new SVGCircleElementWrappingImplementation._wrap(raw);
4688 case "SVGClipPathElement":
4689 return new SVGClipPathElementWrappingImplementation._wrap(raw);
4690 case "SVGColor":
4691 return new SVGColorWrappingImplementation._wrap(raw);
4692 case "SVGComponentTransferFunctionElement":
4693 return new SVGComponentTransferFunctionElementWrappingImplementation._wr ap(raw);
4694 case "SVGCursorElement":
4695 return new SVGCursorElementWrappingImplementation._wrap(raw);
4696 case "SVGDefsElement":
4697 return new SVGDefsElementWrappingImplementation._wrap(raw);
4698 case "SVGDescElement":
4699 return new SVGDescElementWrappingImplementation._wrap(raw);
4700 case "SVGDocument":
4701 return new SVGDocumentWrappingImplementation._wrap(raw);
4702 case "SVGElement":
4703 return new SVGElementWrappingImplementation._wrap(raw);
4704 case "SVGElementInstance":
4705 return new SVGElementInstanceWrappingImplementation._wrap(raw);
4706 case "SVGElementInstanceList":
4707 return new SVGElementInstanceListWrappingImplementation._wrap(raw);
4708 case "SVGEllipseElement":
4709 return new SVGEllipseElementWrappingImplementation._wrap(raw);
4710 case "SVGException":
4711 return new SVGExceptionWrappingImplementation._wrap(raw);
4712 case "SVGExternalResourcesRequired":
4713 return new SVGExternalResourcesRequiredWrappingImplementation._wrap(raw) ;
4714 case "SVGFEBlendElement":
4715 return new SVGFEBlendElementWrappingImplementation._wrap(raw);
4716 case "SVGFEColorMatrixElement":
4717 return new SVGFEColorMatrixElementWrappingImplementation._wrap(raw);
4718 case "SVGFEComponentTransferElement":
4719 return new SVGFEComponentTransferElementWrappingImplementation._wrap(raw );
4720 /* Skipping SVGFECompositeElement*/
4721 case "SVGFEConvolveMatrixElement":
4722 return new SVGFEConvolveMatrixElementWrappingImplementation._wrap(raw);
4723 case "SVGFEDiffuseLightingElement":
4724 return new SVGFEDiffuseLightingElementWrappingImplementation._wrap(raw);
4725 case "SVGFEDisplacementMapElement":
4726 return new SVGFEDisplacementMapElementWrappingImplementation._wrap(raw);
4727 case "SVGFEDistantLightElement":
4728 return new SVGFEDistantLightElementWrappingImplementation._wrap(raw);
4729 case "SVGFEDropShadowElement":
4730 return new SVGFEDropShadowElementWrappingImplementation._wrap(raw);
4731 case "SVGFEFloodElement":
4732 return new SVGFEFloodElementWrappingImplementation._wrap(raw);
4733 case "SVGFEFuncAElement":
4734 return new SVGFEFuncAElementWrappingImplementation._wrap(raw);
4735 case "SVGFEFuncBElement":
4736 return new SVGFEFuncBElementWrappingImplementation._wrap(raw);
4737 case "SVGFEFuncGElement":
4738 return new SVGFEFuncGElementWrappingImplementation._wrap(raw);
4739 case "SVGFEFuncRElement":
4740 return new SVGFEFuncRElementWrappingImplementation._wrap(raw);
4741 case "SVGFEGaussianBlurElement":
4742 return new SVGFEGaussianBlurElementWrappingImplementation._wrap(raw);
4743 case "SVGFEImageElement":
4744 return new SVGFEImageElementWrappingImplementation._wrap(raw);
4745 case "SVGFEMergeElement":
4746 return new SVGFEMergeElementWrappingImplementation._wrap(raw);
4747 case "SVGFEMergeNodeElement":
4748 return new SVGFEMergeNodeElementWrappingImplementation._wrap(raw);
4749 /* Skipping SVGFEMorphologyElement*/
4750 case "SVGFEOffsetElement":
4751 return new SVGFEOffsetElementWrappingImplementation._wrap(raw);
4752 case "SVGFEPointLightElement":
4753 return new SVGFEPointLightElementWrappingImplementation._wrap(raw);
4754 case "SVGFESpecularLightingElement":
4755 return new SVGFESpecularLightingElementWrappingImplementation._wrap(raw) ;
4756 case "SVGFESpotLightElement":
4757 return new SVGFESpotLightElementWrappingImplementation._wrap(raw);
4758 case "SVGFETileElement":
4759 return new SVGFETileElementWrappingImplementation._wrap(raw);
4760 case "SVGFETurbulenceElement":
4761 return new SVGFETurbulenceElementWrappingImplementation._wrap(raw);
4762 case "SVGFilterElement":
4763 return new SVGFilterElementWrappingImplementation._wrap(raw);
4764 case "SVGFilterPrimitiveStandardAttributes":
4765 return new SVGFilterPrimitiveStandardAttributesWrappingImplementation._w rap(raw);
4766 case "SVGFitToViewBox":
4767 return new SVGFitToViewBoxWrappingImplementation._wrap(raw);
4768 case "SVGFontElement":
4769 return new SVGFontElementWrappingImplementation._wrap(raw);
4770 case "SVGFontFaceElement":
4771 return new SVGFontFaceElementWrappingImplementation._wrap(raw);
4772 case "SVGFontFaceFormatElement":
4773 return new SVGFontFaceFormatElementWrappingImplementation._wrap(raw);
4774 case "SVGFontFaceNameElement":
4775 return new SVGFontFaceNameElementWrappingImplementation._wrap(raw);
4776 case "SVGFontFaceSrcElement":
4777 return new SVGFontFaceSrcElementWrappingImplementation._wrap(raw);
4778 case "SVGFontFaceUriElement":
4779 return new SVGFontFaceUriElementWrappingImplementation._wrap(raw);
4780 case "SVGForeignObjectElement":
4781 return new SVGForeignObjectElementWrappingImplementation._wrap(raw);
4782 case "SVGGElement":
4783 return new SVGGElementWrappingImplementation._wrap(raw);
4784 case "SVGGlyphElement":
4785 return new SVGGlyphElementWrappingImplementation._wrap(raw);
4786 case "SVGGlyphRefElement":
4787 return new SVGGlyphRefElementWrappingImplementation._wrap(raw);
4788 case "SVGGradientElement":
4789 return new SVGGradientElementWrappingImplementation._wrap(raw);
4790 case "SVGHKernElement":
4791 return new SVGHKernElementWrappingImplementation._wrap(raw);
4792 case "SVGImageElement":
4793 return new SVGImageElementWrappingImplementation._wrap(raw);
4794 case "SVGLangSpace":
4795 return new SVGLangSpaceWrappingImplementation._wrap(raw);
4796 case "SVGLength":
4797 return new SVGLengthWrappingImplementation._wrap(raw);
4798 case "SVGLengthList":
4799 return new SVGLengthListWrappingImplementation._wrap(raw);
4800 case "SVGLineElement":
4801 return new SVGLineElementWrappingImplementation._wrap(raw);
4802 case "SVGLinearGradientElement":
4803 return new SVGLinearGradientElementWrappingImplementation._wrap(raw);
4804 case "SVGLocatable":
4805 return new SVGLocatableWrappingImplementation._wrap(raw);
4806 case "SVGMPathElement":
4807 return new SVGMPathElementWrappingImplementation._wrap(raw);
4808 case "SVGMarkerElement":
4809 return new SVGMarkerElementWrappingImplementation._wrap(raw);
4810 case "SVGMaskElement":
4811 return new SVGMaskElementWrappingImplementation._wrap(raw);
4812 case "SVGMatrix":
4813 return new SVGMatrixWrappingImplementation._wrap(raw);
4814 case "SVGMetadataElement":
4815 return new SVGMetadataElementWrappingImplementation._wrap(raw);
4816 case "SVGMissingGlyphElement":
4817 return new SVGMissingGlyphElementWrappingImplementation._wrap(raw);
4818 case "SVGNumber":
4819 return new SVGNumberWrappingImplementation._wrap(raw);
4820 case "SVGNumberList":
4821 return new SVGNumberListWrappingImplementation._wrap(raw);
4822 case "SVGPaint":
4823 return new SVGPaintWrappingImplementation._wrap(raw);
4824 case "SVGPathElement":
4825 return new SVGPathElementWrappingImplementation._wrap(raw);
4826 case "SVGPathSeg":
4827 return new SVGPathSegWrappingImplementation._wrap(raw);
4828 case "SVGPathSegArcAbs":
4829 return new SVGPathSegArcAbsWrappingImplementation._wrap(raw);
4830 case "SVGPathSegArcRel":
4831 return new SVGPathSegArcRelWrappingImplementation._wrap(raw);
4832 case "SVGPathSegClosePath":
4833 return new SVGPathSegClosePathWrappingImplementation._wrap(raw);
4834 case "SVGPathSegCurvetoCubicAbs":
4835 return new SVGPathSegCurvetoCubicAbsWrappingImplementation._wrap(raw);
4836 case "SVGPathSegCurvetoCubicRel":
4837 return new SVGPathSegCurvetoCubicRelWrappingImplementation._wrap(raw);
4838 case "SVGPathSegCurvetoCubicSmoothAbs":
4839 return new SVGPathSegCurvetoCubicSmoothAbsWrappingImplementation._wrap(r aw);
4840 case "SVGPathSegCurvetoCubicSmoothRel":
4841 return new SVGPathSegCurvetoCubicSmoothRelWrappingImplementation._wrap(r aw);
4842 case "SVGPathSegCurvetoQuadraticAbs":
4843 return new SVGPathSegCurvetoQuadraticAbsWrappingImplementation._wrap(raw );
4844 case "SVGPathSegCurvetoQuadraticRel":
4845 return new SVGPathSegCurvetoQuadraticRelWrappingImplementation._wrap(raw );
4846 case "SVGPathSegCurvetoQuadraticSmoothAbs":
4847 return new SVGPathSegCurvetoQuadraticSmoothAbsWrappingImplementation._wr ap(raw);
4848 case "SVGPathSegCurvetoQuadraticSmoothRel":
4849 return new SVGPathSegCurvetoQuadraticSmoothRelWrappingImplementation._wr ap(raw);
4850 case "SVGPathSegLinetoAbs":
4851 return new SVGPathSegLinetoAbsWrappingImplementation._wrap(raw);
4852 case "SVGPathSegLinetoHorizontalAbs":
4853 return new SVGPathSegLinetoHorizontalAbsWrappingImplementation._wrap(raw );
4854 case "SVGPathSegLinetoHorizontalRel":
4855 return new SVGPathSegLinetoHorizontalRelWrappingImplementation._wrap(raw );
4856 case "SVGPathSegLinetoRel":
4857 return new SVGPathSegLinetoRelWrappingImplementation._wrap(raw);
4858 case "SVGPathSegLinetoVerticalAbs":
4859 return new SVGPathSegLinetoVerticalAbsWrappingImplementation._wrap(raw);
4860 case "SVGPathSegLinetoVerticalRel":
4861 return new SVGPathSegLinetoVerticalRelWrappingImplementation._wrap(raw);
4862 case "SVGPathSegList":
4863 return new SVGPathSegListWrappingImplementation._wrap(raw);
4864 case "SVGPathSegMovetoAbs":
4865 return new SVGPathSegMovetoAbsWrappingImplementation._wrap(raw);
4866 case "SVGPathSegMovetoRel":
4867 return new SVGPathSegMovetoRelWrappingImplementation._wrap(raw);
4868 case "SVGPatternElement":
4869 return new SVGPatternElementWrappingImplementation._wrap(raw);
4870 case "SVGPoint":
4871 return new SVGPointWrappingImplementation._wrap(raw);
4872 case "SVGPointList":
4873 return new SVGPointListWrappingImplementation._wrap(raw);
4874 case "SVGPolygonElement":
4875 return new SVGPolygonElementWrappingImplementation._wrap(raw);
4876 case "SVGPolylineElement":
4877 return new SVGPolylineElementWrappingImplementation._wrap(raw);
4878 case "SVGPreserveAspectRatio":
4879 return new SVGPreserveAspectRatioWrappingImplementation._wrap(raw);
4880 case "SVGRadialGradientElement":
4881 return new SVGRadialGradientElementWrappingImplementation._wrap(raw);
4882 case "SVGRect":
4883 return new SVGRectWrappingImplementation._wrap(raw);
4884 case "SVGRectElement":
4885 return new SVGRectElementWrappingImplementation._wrap(raw);
4886 case "SVGRenderingIntent":
4887 return new SVGRenderingIntentWrappingImplementation._wrap(raw);
4888 case "SVGSVGElement":
4889 return new SVGSVGElementWrappingImplementation._wrap(raw);
4890 case "SVGScriptElement":
4891 return new SVGScriptElementWrappingImplementation._wrap(raw);
4892 case "SVGSetElement":
4893 return new SVGSetElementWrappingImplementation._wrap(raw);
4894 case "SVGStopElement":
4895 return new SVGStopElementWrappingImplementation._wrap(raw);
4896 case "SVGStringList":
4897 return new SVGStringListWrappingImplementation._wrap(raw);
4898 case "SVGStylable":
4899 return new SVGStylableWrappingImplementation._wrap(raw);
4900 case "SVGStyleElement":
4901 return new SVGStyleElementWrappingImplementation._wrap(raw);
4902 case "SVGSwitchElement":
4903 return new SVGSwitchElementWrappingImplementation._wrap(raw);
4904 case "SVGSymbolElement":
4905 return new SVGSymbolElementWrappingImplementation._wrap(raw);
4906 case "SVGTRefElement":
4907 return new SVGTRefElementWrappingImplementation._wrap(raw);
4908 case "SVGTSpanElement":
4909 return new SVGTSpanElementWrappingImplementation._wrap(raw);
4910 case "SVGTests":
4911 return new SVGTestsWrappingImplementation._wrap(raw);
4912 case "SVGTextContentElement":
4913 return new SVGTextContentElementWrappingImplementation._wrap(raw);
4914 case "SVGTextElement":
4915 return new SVGTextElementWrappingImplementation._wrap(raw);
4916 case "SVGTextPathElement":
4917 return new SVGTextPathElementWrappingImplementation._wrap(raw);
4918 case "SVGTextPositioningElement":
4919 return new SVGTextPositioningElementWrappingImplementation._wrap(raw);
4920 case "SVGTitleElement":
4921 return new SVGTitleElementWrappingImplementation._wrap(raw);
4922 case "SVGTransform":
4923 return new SVGTransformWrappingImplementation._wrap(raw);
4924 case "SVGTransformList":
4925 return new SVGTransformListWrappingImplementation._wrap(raw);
4926 case "SVGTransformable":
4927 return new SVGTransformableWrappingImplementation._wrap(raw);
4928 case "SVGURIReference":
4929 return new SVGURIReferenceWrappingImplementation._wrap(raw);
4930 case "SVGUnitTypes":
4931 return new SVGUnitTypesWrappingImplementation._wrap(raw);
4932 case "SVGUseElement":
4933 return new SVGUseElementWrappingImplementation._wrap(raw);
4934 case "SVGVKernElement":
4935 return new SVGVKernElementWrappingImplementation._wrap(raw);
4936 case "SVGViewElement":
4937 return new SVGViewElementWrappingImplementation._wrap(raw);
4938 case "SVGViewSpec":
4939 return new SVGViewSpecWrappingImplementation._wrap(raw);
4940 case "SVGZoomAndPan":
4941 return new SVGZoomAndPanWrappingImplementation._wrap(raw);
4942 case "SVGZoomEvent":
4943 return new SVGZoomEventWrappingImplementation._wrap(raw);
4944 case "Screen":
4945 return new ScreenWrappingImplementation._wrap(raw);
4946 case "HTMLScriptElement":
4947 return new ScriptElementWrappingImplementation._wrap(raw);
4948 /* Skipping ScriptProfile*/
4949 /* Skipping ScriptProfileNode*/
4950 case "HTMLSelectElement":
4951 return new SelectElementWrappingImplementation._wrap(raw);
4952 case "SharedWorker":
4953 return new SharedWorkerWrappingImplementation._wrap(raw);
4954 /* Skipping SharedWorkercontext*/
4955 case "HTMLSourceElement":
4956 return new SourceElementWrappingImplementation._wrap(raw);
4957 case "HTMLSpanElement":
4958 return new SpanElementWrappingImplementation._wrap(raw);
4959 case "SpeechInputEvent":
4960 return new SpeechInputEventWrappingImplementation._wrap(raw);
4961 case "SpeechInputResult":
4962 return new SpeechInputResultWrappingImplementation._wrap(raw);
4963 case "SpeechInputResultList":
4964 return new SpeechInputResultListWrappingImplementation._wrap(raw);
4965 case "Storage":
4966 return new StorageWrappingImplementation._wrap(raw);
4967 case "StorageEvent":
4968 return new StorageEventWrappingImplementation._wrap(raw);
4969 case "StorageInfo":
4970 return new StorageInfoWrappingImplementation._wrap(raw);
4971 /* Skipping StorageInfoErrorCallback*/
4972 /* Skipping StorageInfoQuotaCallback*/
4973 /* Skipping StorageInfoUsageCallback*/
4974 /* Skipping StringCallback*/
4975 case "HTMLStyleElement":
4976 return new StyleElementWrappingImplementation._wrap(raw);
4977 case "StyleMedia":
4978 return new StyleMediaWrappingImplementation._wrap(raw);
4979 case "StyleSheet":
4980 return new StyleSheetWrappingImplementation._wrap(raw);
4981 case "StyleSheetList":
4982 return new StyleSheetListWrappingImplementation._wrap(raw);
4983 case "HTMLTableCaptionElement":
4984 return new TableCaptionElementWrappingImplementation._wrap(raw);
4985 case "HTMLTableCellElement":
4986 return new TableCellElementWrappingImplementation._wrap(raw);
4987 case "HTMLTableColElement":
4988 return new TableColElementWrappingImplementation._wrap(raw);
4989 case "HTMLTableElement":
4990 return new TableElementWrappingImplementation._wrap(raw);
4991 case "HTMLTableRowElement":
4992 return new TableRowElementWrappingImplementation._wrap(raw);
4993 case "HTMLTableSectionElement":
4994 return new TableSectionElementWrappingImplementation._wrap(raw);
4995 case "Text":
4996 return new TextWrappingImplementation._wrap(raw);
4997 case "HTMLTextAreaElement":
4998 return new TextAreaElementWrappingImplementation._wrap(raw);
4999 case "TextEvent":
5000 return new TextEventWrappingImplementation._wrap(raw);
5001 case "TextMetrics":
5002 return new TextMetricsWrappingImplementation._wrap(raw);
5003 case "TextTrack":
5004 return new TextTrackWrappingImplementation._wrap(raw);
5005 case "TextTrackCue":
5006 return new TextTrackCueWrappingImplementation._wrap(raw);
5007 case "TextTrackCueList":
5008 return new TextTrackCueListWrappingImplementation._wrap(raw);
5009 case "TimeRanges":
5010 return new TimeRangesWrappingImplementation._wrap(raw);
5011 case "HTMLTitleElement":
5012 return new TitleElementWrappingImplementation._wrap(raw);
5013 case "Touch":
5014 return new TouchWrappingImplementation._wrap(raw);
5015 case "TouchEvent":
5016 return new TouchEventWrappingImplementation._wrap(raw);
5017 case "TouchList":
5018 return new TouchListWrappingImplementation._wrap(raw);
5019 case "HTMLTrackElement":
5020 return new TrackElementWrappingImplementation._wrap(raw);
5021 case "WebKitTransitionEvent":
5022 return new TransitionEventWrappingImplementation._wrap(raw);
5023 /* Skipping TreeWalker*/
5024 case "UIEvent":
5025 return new UIEventWrappingImplementation._wrap(raw);
5026 case "HTMLUListElement":
5027 return new UListElementWrappingImplementation._wrap(raw);
5028 case "Uint16Array":
5029 return new Uint16ArrayWrappingImplementation._wrap(raw);
5030 case "Uint32Array":
5031 return new Uint32ArrayWrappingImplementation._wrap(raw);
5032 case "Uint8Array":
5033 return new Uint8ArrayWrappingImplementation._wrap(raw);
5034 case "HTMLUnknownElement":
5035 return new UnknownElementWrappingImplementation._wrap(raw);
5036 case "ValidityState":
5037 return new ValidityStateWrappingImplementation._wrap(raw);
5038 case "HTMLVideoElement":
5039 return new VideoElementWrappingImplementation._wrap(raw);
5040 case "VoidCallback":
5041 return new VoidCallbackWrappingImplementation._wrap(raw);
5042 case "WaveShaperNode":
5043 return new WaveShaperNodeWrappingImplementation._wrap(raw);
5044 case "WebGLActiveInfo":
5045 return new WebGLActiveInfoWrappingImplementation._wrap(raw);
5046 case "WebGLBuffer":
5047 return new WebGLBufferWrappingImplementation._wrap(raw);
5048 case "WebGLContextAttributes":
5049 return new WebGLContextAttributesWrappingImplementation._wrap(raw);
5050 case "WebGLContextEvent":
5051 return new WebGLContextEventWrappingImplementation._wrap(raw);
5052 case "WebGLDebugRendererInfo":
5053 return new WebGLDebugRendererInfoWrappingImplementation._wrap(raw);
5054 case "WebGLDebugShaders":
5055 return new WebGLDebugShadersWrappingImplementation._wrap(raw);
5056 case "WebGLFramebuffer":
5057 return new WebGLFramebufferWrappingImplementation._wrap(raw);
5058 case "WebGLProgram":
5059 return new WebGLProgramWrappingImplementation._wrap(raw);
5060 case "WebGLRenderbuffer":
5061 return new WebGLRenderbufferWrappingImplementation._wrap(raw);
5062 case "WebGLRenderingContext":
5063 return new WebGLRenderingContextWrappingImplementation._wrap(raw);
5064 case "WebGLShader":
5065 return new WebGLShaderWrappingImplementation._wrap(raw);
5066 case "WebGLTexture":
5067 return new WebGLTextureWrappingImplementation._wrap(raw);
5068 case "WebGLUniformLocation":
5069 return new WebGLUniformLocationWrappingImplementation._wrap(raw);
5070 case "WebGLVertexArrayObjectOES":
5071 return new WebGLVertexArrayObjectOESWrappingImplementation._wrap(raw);
5072 case "WebKitCSSFilterValue":
5073 return new WebKitCSSFilterValueWrappingImplementation._wrap(raw);
5074 case "WebKitMutationObserver":
5075 return new WebKitMutationObserverWrappingImplementation._wrap(raw);
5076 case "WebSocket":
5077 return new WebSocketWrappingImplementation._wrap(raw);
5078 case "WheelEvent":
5079 return new WheelEventWrappingImplementation._wrap(raw);
5080 case "Window":
5081 return new WindowWrappingImplementation._wrap(raw);
5082 case "Worker":
5083 return new WorkerWrappingImplementation._wrap(raw);
5084 /* Skipping WorkerContext*/
5085 /* Skipping WorkerLocation*/
5086 /* Skipping WorkerNavigator*/
5087 case "XMLHttpRequest":
5088 return new XMLHttpRequestWrappingImplementation._wrap(raw);
5089 case "XMLHttpRequestException":
5090 return new XMLHttpRequestExceptionWrappingImplementation._wrap(raw);
5091 case "XMLHttpRequestProgressEvent":
5092 return new XMLHttpRequestProgressEventWrappingImplementation._wrap(raw);
5093 case "XMLHttpRequestUpload":
5094 return new XMLHttpRequestUploadWrappingImplementation._wrap(raw);
5095 /* Skipping XMLSerializer*/
5096 /* Skipping XPathEvaluator*/
5097 /* Skipping XPathException*/
5098 /* Skipping XPathExpression*/
5099 /* Skipping XPathNSResolver*/
5100 /* Skipping XPathResult*/
5101 /* Skipping XSLTProcessor*/
5102 default:
5103 throw new UnsupportedOperationException("Unknown type:" + raw.toString() );
5104 }
5105 }
5106
1949 static unwrapMaybePrimitive(raw) { 5107 static unwrapMaybePrimitive(raw) {
1950 return raw is DOMWrapperBase ? raw._ptr : raw; 5108 return (raw === null || raw is String || raw is num || raw is bool) ? raw : raw._ptr;
1951 } 5109 }
1952 5110
1953 static unwrap(raw) { 5111 static unwrap(raw) {
1954 return raw === null ? null : raw._ptr; 5112 return raw === null ? null : raw._ptr;
1955 } 5113 }
1956 5114
1957 5115
1958 static void initialize(var rawWindow) { 5116 static void initialize() {
1959 secretWindow = wrapWindow(rawWindow); 5117 secretWindow = wrapWindow(dom.window);
1960 secretDocument = wrapDocument(rawWindow.document); 5118 secretDocument = wrapDocument(dom.document);
1961 } 5119 }
1962 5120
1963 } 5121 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698