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

Unified Diff: lib/typedObjects/stringType.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/references.js ('k') | lib/typedObjects/utils.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/typedObjects/stringType.js
diff --git a/lib/typedObjects/stringType.js b/lib/typedObjects/stringType.js
index 45bbb3e302b8c7da142b54887507c9eca3c3124e..fced048c628dcf076464a13da130d739472c83f1 100644
--- a/lib/typedObjects/stringType.js
+++ b/lib/typedObjects/stringType.js
@@ -37,7 +37,7 @@ let string = exports.string = uint16.Array({
else if (type == "string" || (value && string.isInstance(value)))
{
let sourceLength = value.length | 0;
- offset = Math.min(sourceLength, offset | 0)
+ offset = Math.min(sourceLength, offset | 0);
length = (typeof length == "number" ? length | 0 : sourceLength);
length = Math.min(length, sourceLength - offset);
this.length = length;
« no previous file with comments | « lib/typedObjects/references.js ('k') | lib/typedObjects/utils.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld