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

Unified Diff: src/messages.js

Issue 15943002: v8 typed arrays: add DataView type (Closed)
Patch Set: v8 typed arrays: add DataView type, v2 Created 7 years, 7 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: src/messages.js
diff --git a/src/messages.js b/src/messages.js
index ce075ce5e5f685d776c2292d03521223fad261c6..67c7fbb63680a586a02ac18d01a9a484d5591eb3 100644
--- a/src/messages.js
+++ b/src/messages.js
@@ -104,6 +104,11 @@ var kMessages = {
observe_perform_non_function: ["Cannot perform non-function"],
observe_notify_non_notifier: ["notify called on non-notifier object"],
proto_poison_pill: ["Generic use of __proto__ accessor not allowed"],
+ not_array_buffer: ["Argument is not an ArrayBuffer"],
+ not_data_view: ["this is not a DataView."],
+ missing_data_view_argument: ["Missing required argument"],
+ invalid_data_view_offset: ["Start offset is too large"],
+ invalid_data_view_length: ["Length is too large"],
parameterless_typed_array_constr:
["%0"," constructor should have at least one argument."],
not_typed_array: ["this is not a typed array."],

Powered by Google App Engine
This is Rietveld 408576698