| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_BUILTINS_H_ | 5 #ifndef V8_BUILTINS_H_ |
| 6 #define V8_BUILTINS_H_ | 6 #define V8_BUILTINS_H_ |
| 7 | 7 |
| 8 #include "src/handles.h" | 8 #include "src/handles.h" |
| 9 | 9 |
| 10 namespace v8 { | 10 namespace v8 { |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 static void InitBuiltinFunctionTable(); | 319 static void InitBuiltinFunctionTable(); |
| 320 | 320 |
| 321 bool initialized_; | 321 bool initialized_; |
| 322 | 322 |
| 323 friend class BuiltinFunctionTable; | 323 friend class BuiltinFunctionTable; |
| 324 friend class Isolate; | 324 friend class Isolate; |
| 325 | 325 |
| 326 DISALLOW_COPY_AND_ASSIGN(Builtins); | 326 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 327 }; | 327 }; |
| 328 | 328 |
| 329 } } // namespace v8::internal | 329 } // namespace internal |
| 330 } // namespace v8 |
| 330 | 331 |
| 331 #endif // V8_BUILTINS_H_ | 332 #endif // V8_BUILTINS_H_ |
| OLD | NEW |