Changeset 176508 in webkit for trunk/Source/JavaScriptCore/builtins
- Timestamp:
- Nov 22, 2014, 8:37:15 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/builtins/BuiltinExecutables.h
r167811 r176508 41 41 WTF_MAKE_FAST_ALLOCATED; 42 42 public: 43 static PassOwnPtr<BuiltinExecutables> create(VM& vm) 44 { 45 return adoptPtr(new BuiltinExecutables(vm)); 46 } 47 43 explicit BuiltinExecutables(VM&); 44 48 45 #define EXPOSE_BUILTIN_EXECUTABLES(name, functionName, length) \ 49 46 UnlinkedFunctionExecutable* name##Executable(); \ … … 54 51 55 52 private: 56 BuiltinExecutables(VM&);57 53 VM& m_vm; 58 54 UnlinkedFunctionExecutable* createBuiltinExecutable(const SourceCode&, const Identifier&);
Note:
See TracChangeset
for help on using the changeset viewer.