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

Side by Side Diff: src/arraybuffer.js

Issue 25700010: Implement ArrayBuffer.isView. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/runtime.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 fin = first; 74 fin = first;
75 } 75 }
76 var newLen = fin - first; 76 var newLen = fin - first;
77 // TODO(dslomov): implement inheritance 77 // TODO(dslomov): implement inheritance
78 var result = new $ArrayBuffer(newLen); 78 var result = new $ArrayBuffer(newLen);
79 79
80 %ArrayBufferSliceImpl(this, result, first); 80 %ArrayBufferSliceImpl(this, result, first);
81 return result; 81 return result;
82 } 82 }
83 83
84 function ArrayBufferIsView(obj) {
85 return %ArrayBufferIsView(obj);
86 }
87
84 function SetUpArrayBuffer() { 88 function SetUpArrayBuffer() {
85 %CheckIsBootstrapping(); 89 %CheckIsBootstrapping();
86 90
87 // Set up the ArrayBuffer constructor function. 91 // Set up the ArrayBuffer constructor function.
88 %SetCode($ArrayBuffer, ArrayBufferConstructor); 92 %SetCode($ArrayBuffer, ArrayBufferConstructor);
89 %FunctionSetPrototype($ArrayBuffer, new $Object()); 93 %FunctionSetPrototype($ArrayBuffer, new $Object());
90 94
91 // Set up the constructor property on the ArrayBuffer prototype object. 95 // Set up the constructor property on the ArrayBuffer prototype object.
92 %SetProperty($ArrayBuffer.prototype, "constructor", $ArrayBuffer, DONT_ENUM); 96 %SetProperty($ArrayBuffer.prototype, "constructor", $ArrayBuffer, DONT_ENUM);
93 97
94 InstallGetter($ArrayBuffer.prototype, "byteLength", ArrayBufferGetByteLength); 98 InstallGetter($ArrayBuffer.prototype, "byteLength", ArrayBufferGetByteLength);
95 99
100 InstallFunctions($ArrayBuffer, DONT_ENUM, $Array(
101 "isView", ArrayBufferIsView
102 ));
103
96 InstallFunctions($ArrayBuffer.prototype, DONT_ENUM, $Array( 104 InstallFunctions($ArrayBuffer.prototype, DONT_ENUM, $Array(
97 "slice", ArrayBufferSlice 105 "slice", ArrayBufferSlice
98 )); 106 ));
99 } 107 }
100 108
101 SetUpArrayBuffer(); 109 SetUpArrayBuffer();
102 110
103 111
OLDNEW
« no previous file with comments | « no previous file | src/runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698