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

Unified Diff: client/dom/generated/src/wrapping/_Float32ArrayWrappingImplementation.dart

Issue 9663027: Remove generated directories with 100s of files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: client/dom/generated/src/wrapping/_Float32ArrayWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_Float32ArrayWrappingImplementation.dart b/client/dom/generated/src/wrapping/_Float32ArrayWrappingImplementation.dart
deleted file mode 100644
index db6aa9a7c5fce3b5c547ba0250344a01bfa6b4f7..0000000000000000000000000000000000000000
--- a/client/dom/generated/src/wrapping/_Float32ArrayWrappingImplementation.dart
+++ /dev/null
@@ -1,133 +0,0 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
-class _Float32ArrayWrappingImplementation extends _ArrayBufferViewWrappingImplementation implements Float32Array {
- _Float32ArrayWrappingImplementation() : super() {}
-
- static create__Float32ArrayWrappingImplementation() native {
- return new _Float32ArrayWrappingImplementation();
- }
-
- int get length() { return _get_length(this); }
- static int _get_length(var _this) native;
-
- num operator[](int index) { return _index(this, index); }
- static num _index(var _this, int index) native;
-
- void operator[]=(int index, num value) {
- return _set_index(this, index, value);
- }
- static _set_index(_this, index, value) native;
-
- void add(num value) {
- throw new UnsupportedOperationException("Cannot add to immutable List.");
- }
-
- void addLast(num value) {
- throw new UnsupportedOperationException("Cannot add to immutable List.");
- }
-
- void addAll(Collection<num> collection) {
- throw new UnsupportedOperationException("Cannot add to immutable List.");
- }
-
- void sort(int compare(num a, num b)) {
- throw new UnsupportedOperationException("Cannot sort immutable List.");
- }
-
- void copyFrom(List<Object> src, int srcStart, int dstStart, int count) {
- throw new UnsupportedOperationException("This object is immutable.");
- }
-
- int indexOf(num element, [int start = 0]) {
- return _Lists.indexOf(this, element, start, this.length);
- }
-
- int lastIndexOf(num element, [int start = null]) {
- if (start === null) start = length - 1;
- return _Lists.lastIndexOf(this, element, start);
- }
-
- int clear() {
- throw new UnsupportedOperationException("Cannot clear immutable List.");
- }
-
- num removeLast() {
- throw new UnsupportedOperationException("Cannot removeLast on immutable List.");
- }
-
- num last() {
- return this[length - 1];
- }
-
- void forEach(void f(num element)) {
- _Collections.forEach(this, f);
- }
-
- Collection map(f(num element)) {
- return _Collections.map(this, [], f);
- }
-
- Collection<num> filter(bool f(num element)) {
- return _Collections.filter(this, new List<num>(), f);
- }
-
- bool every(bool f(num element)) {
- return _Collections.every(this, f);
- }
-
- bool some(bool f(num element)) {
- return _Collections.some(this, f);
- }
-
- void setRange(int start, int length, List<num> from, [int startFrom]) {
- throw new UnsupportedOperationException("Cannot setRange on immutable List.");
- }
-
- void removeRange(int start, int length) {
- throw new UnsupportedOperationException("Cannot removeRange on immutable List.");
- }
-
- void insertRange(int start, int length, [num initialValue]) {
- throw new UnsupportedOperationException("Cannot insertRange on immutable List.");
- }
-
- List<num> getRange(int start, int length) {
- throw new NotImplementedException();
- }
-
- bool isEmpty() {
- return length == 0;
- }
-
- Iterator<num> iterator() {
- return new _FixedSizeListIterator<num>(this);
- }
-
- void setElements(Object array, [int offset = null]) {
- if (offset === null) {
- _setElements(this, array);
- return;
- } else {
- _setElements_2(this, array, offset);
- return;
- }
- }
- static void _setElements(receiver, array) native;
- static void _setElements_2(receiver, array, offset) native;
-
- Float32Array subarray(int start, [int end = null]) {
- if (end === null) {
- return _subarray(this, start);
- } else {
- return _subarray_2(this, start, end);
- }
- }
- static Float32Array _subarray(receiver, start) native;
- static Float32Array _subarray_2(receiver, start, end) native;
-
- String get typeName() { return "Float32Array"; }
-}

Powered by Google App Engine
This is Rietveld 408576698