Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: lib/typedObjects/arrayTypes.js

Issue 29324295: Noissue - Add missing semicolons (Closed)
Patch Set: Created Aug. 19, 2015, 10:19 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | lib/typedObjects/references.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/typedObjects/arrayTypes.js
diff --git a/lib/typedObjects/arrayTypes.js b/lib/typedObjects/arrayTypes.js
index 606c3293dc4c50d6dc26dd7d1990179f1c80b9c6..03e48ba0addada242f0f263ecc28b7c8f990e8fe 100644
--- a/lib/typedObjects/arrayTypes.js
+++ b/lib/typedObjects/arrayTypes.js
@@ -47,7 +47,7 @@ function createSetter(elementSetter, elementShift)
if (index < 0 || index >= this.length)
throw new Error("Array index out of bounds");
return elementSetter.call(this, this.arrayBufferIndex, this.arrayByteOffset + (index << elementShift), value);
- }
+ };
}
function createCombinedConstructor(customConstructor)
@@ -56,7 +56,7 @@ function createCombinedConstructor(customConstructor)
{
defaultArrayConstructor.apply(this);
customConstructor.apply(this, arguments);
- }
+ };
}
function createCombinedDestructor(customDestructor)
@@ -71,7 +71,7 @@ function createCombinedDestructor(customDestructor)
{
defaultArrayDestructor.apply(this);
}
- }
+ };
}
function createLengthWatcher(elementType, elementSetter)
@@ -121,7 +121,7 @@ function createLengthWatcher(elementType, elementSetter)
}
return newLength;
- }
+ };
}
function createSizeWatcher(elementType, minElements, bufferSize, buffers, viewTypes, views, firstFree)
@@ -188,7 +188,7 @@ function createSizeWatcher(elementType, minElements, bufferSize, buffers, viewTy
}
return newSize;
- }
+ };
}
function push()
« no previous file with comments | « no previous file | lib/typedObjects/references.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld