OLD | NEW |
1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 | 241 |
242 #ifdef WIN32 | 242 #ifdef WIN32 |
243 #undef Yield | 243 #undef Yield |
244 #endif | 244 #endif |
245 | 245 |
246 static Handle<Value> Print(const Arguments& args); | 246 static Handle<Value> Print(const Arguments& args); |
247 static Handle<Value> Write(const Arguments& args); | 247 static Handle<Value> Write(const Arguments& args); |
248 static Handle<Value> Yield(const Arguments& args); | 248 static Handle<Value> Yield(const Arguments& args); |
249 static Handle<Value> Quit(const Arguments& args); | 249 static Handle<Value> Quit(const Arguments& args); |
250 static Handle<Value> Version(const Arguments& args); | 250 static Handle<Value> Version(const Arguments& args); |
| 251 static Handle<Value> EnableProfiler(const Arguments& args); |
| 252 static Handle<Value> DisableProfiler(const Arguments& args); |
251 static Handle<Value> Read(const Arguments& args); | 253 static Handle<Value> Read(const Arguments& args); |
252 static Handle<Value> ReadLine(const Arguments& args); | 254 static Handle<Value> ReadLine(const Arguments& args); |
253 static Handle<Value> Load(const Arguments& args); | 255 static Handle<Value> Load(const Arguments& args); |
254 static Handle<Value> Int8Array(const Arguments& args); | 256 static Handle<Value> Int8Array(const Arguments& args); |
255 static Handle<Value> Uint8Array(const Arguments& args); | 257 static Handle<Value> Uint8Array(const Arguments& args); |
256 static Handle<Value> Int16Array(const Arguments& args); | 258 static Handle<Value> Int16Array(const Arguments& args); |
257 static Handle<Value> Uint16Array(const Arguments& args); | 259 static Handle<Value> Uint16Array(const Arguments& args); |
258 static Handle<Value> Int32Array(const Arguments& args); | 260 static Handle<Value> Int32Array(const Arguments& args); |
259 static Handle<Value> Uint32Array(const Arguments& args); | 261 static Handle<Value> Uint32Array(const Arguments& args); |
260 static Handle<Value> Float32Array(const Arguments& args); | 262 static Handle<Value> Float32Array(const Arguments& args); |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 LineEditor* next_; | 350 LineEditor* next_; |
349 static LineEditor* first_; | 351 static LineEditor* first_; |
350 }; | 352 }; |
351 #endif // V8_SHARED | 353 #endif // V8_SHARED |
352 | 354 |
353 | 355 |
354 } // namespace v8 | 356 } // namespace v8 |
355 | 357 |
356 | 358 |
357 #endif // V8_D8_H_ | 359 #endif // V8_D8_H_ |
OLD | NEW |