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

Unified Diff: lib/typedObjects/utils.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 | « lib/typedObjects/stringType.js ('k') | test/tests/typedObjects.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/typedObjects/utils.js
diff --git a/lib/typedObjects/utils.js b/lib/typedObjects/utils.js
index 565e12885305daec950292276462d3a143ec337b..cfbe1fce17c57e5698d86a5fd7f0a62afacbe7b0 100644
--- a/lib/typedObjects/utils.js
+++ b/lib/typedObjects/utils.js
@@ -96,7 +96,7 @@ function watchSetter(/**Function*/ setter, /**Function*/ watcher) /**Function*/
return function(value)
{
setter.call(this, watcher.call(this, value));
- }
+ };
}
/**
@@ -108,7 +108,7 @@ function wrapGetter(/**Function*/ getter) /**Function*/
return function()
{
return getter.call(this, this.bufferIndex, this.byteOffset);
- }
+ };
}
/**
@@ -121,7 +121,7 @@ function wrapSetter(/**Function*/ setter) /**Function*/
return function(value)
{
return setter.call(this, this.bufferIndex, this.byteOffset, value);
- }
+ };
}
/**
@@ -194,7 +194,7 @@ let addBuffer = exports.addBuffer = function(byteSize, buffers, viewTypes, views
for (let i = 0, l = viewTypes.length | 0; i < l; i++)
views[i].push(new viewTypes[i](buffer));
return (buffers.length | 0) - 1;
-}
+};
/**
* Releases an array buffer.
@@ -208,7 +208,7 @@ exports.removeBuffer = function(bufferIndex, buffers, views)
delete buffers[bufferIndex];
for (let i = 0, l = views.length | 0; i < l; i++)
delete views[i][bufferIndex];
-}
+};
/**
* Allocates a new fixed-size element. It will return the first available free
@@ -274,4 +274,4 @@ exports.dealloc = function(firstFree, bufferIndex, byteOffset)
firstFree.byteOffset = byteOffset | 0;
firstFree.targetBufferIndex = oldFreeBufferIndex;
firstFree.targetByteOffset = oldFreeByteOffset;
-}
+};
« no previous file with comments | « lib/typedObjects/stringType.js ('k') | test/tests/typedObjects.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld