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

Unified Diff: src/d8.cc

Issue 9185006: Correct nits in d8 ArrayBuffer() implementation (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 11 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
« no previous file with comments | « no previous file | test/mjsunit/external-array.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/d8.cc
diff --git a/src/d8.cc b/src/d8.cc
index 927d536f8b10d458933f771b7b255114834c82a6..97828a4ac4c6027d4fef17ff42959a7981772fa9 100644
--- a/src/d8.cc
+++ b/src/d8.cc
@@ -387,8 +387,8 @@ Handle<Value> Shell::CreateExternalArray(const Arguments& args,
}
if (offset > array_buffer_length) {
- return ThrowException(
- String::New("byteOffset must be less than ArrayBuffer length."));
+ return ThrowException(
+ String::New("byteOffset must be less than ArrayBuffer length."));
}
if (args.Length() == 2) {
« no previous file with comments | « no previous file | test/mjsunit/external-array.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698