Changeset 231904 in webkit


Ignore:
Timestamp:
May 17, 2018 9:16:59 AM (6 years ago)
Author:
sbarati@apple.com
Message:

Unreviewed. Fix the build after my attempted build fix broke the build.

  • builtins/BuiltinExecutables.cpp:

(JSC::BuiltinExecutables::defaultConstructorSourceCode):
(JSC::BuiltinExecutables::createDefaultConstructor):

  • builtins/BuiltinExecutables.h:
Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r231902 r231904  
     12018-05-17  Saam Barati  <sbarati@apple.com>
     2
     3        Unreviewed. Fix the build after my attempted build fix broke the build.
     4
     5        * builtins/BuiltinExecutables.cpp:
     6        (JSC::BuiltinExecutables::defaultConstructorSourceCode):
     7        (JSC::BuiltinExecutables::createDefaultConstructor):
     8        * builtins/BuiltinExecutables.h:
     9
    1102018-05-17  Yusuke Suzuki  <utatane.tea@gmail.com>
    211
  • trunk/Source/JavaScriptCore/builtins/BuiltinExecutables.cpp

    r231901 r231904  
    4343}
    4444
    45 const SourceCode& BuiltinExecutables::defaultConstructorSourceCode(ConstructorKind constructorKind)
     45SourceCode BuiltinExecutables::defaultConstructorSourceCode(ConstructorKind constructorKind)
    4646{
    4747    switch (constructorKind) {
     
    7373UnlinkedFunctionExecutable* BuiltinExecutables::createDefaultConstructor(ConstructorKind constructorKind, const Identifier& name)
    7474{
    75 
    7675    switch (constructorKind) {
    7776    case ConstructorKind::None:
  • trunk/Source/JavaScriptCore/builtins/BuiltinExecutables.h

    r231889 r231904  
    5050#undef EXPOSE_BUILTIN_SOURCES
    5151
    52     static const SourceCode& defaultConstructorSourceCode(ConstructorKind);
     52    static SourceCode defaultConstructorSourceCode(ConstructorKind);
    5353    UnlinkedFunctionExecutable* createDefaultConstructor(ConstructorKind, const Identifier& name);
    5454
Note: See TracChangeset for help on using the changeset viewer.