Changeset 222481 in webkit for trunk/Source/JavaScriptCore


Ignore:
Timestamp:
Sep 25, 2017, 5:23:36 PM (8 years ago)
Author:
Ryan Haddad
Message:

Unreviewed, rebaseline builtins generator tests after r222473.

  • Scripts/tests/builtins/expected/WebCoreJSBuiltins.h-result:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r222473 r222481  
     12017-09-25  Ryan Haddad  <[email protected]>
     2
     3        Unreviewed, rebaseline builtins generator tests after r222473.
     4
     5        * Scripts/tests/builtins/expected/WebCoreJSBuiltins.h-result:
     6
    172017-09-25  Alex Christensen  <[email protected]>
    28
  • trunk/Source/JavaScriptCore/Scripts/tests/builtins/expected/WebCoreJSBuiltins.h-result

    r213680 r222481  
    320320#define DECLARE_GLOBAL_STATIC(name) \
    321321    JSDOMGlobalObject::GlobalPropertyInfo( \
    322         clientData.builtinFunctions().anotherGuardedInternalBuiltinBuiltins().name##PrivateName(), anotherGuardedInternalBuiltin().m_##name##Function.get() , JSC::DontDelete | JSC::ReadOnly),
     322        clientData.builtinFunctions().anotherGuardedInternalBuiltinBuiltins().name##PrivateName(), anotherGuardedInternalBuiltin().m_##name##Function.get() , JSC::PropertyAttribute::DontDelete | JSC::PropertyAttribute::ReadOnly),
    323323    WEBCORE_FOREACH_ANOTHERGUARDEDINTERNALBUILTIN_BUILTIN_FUNCTION_NAME(DECLARE_GLOBAL_STATIC)
    324324#undef DECLARE_GLOBAL_STATIC
     
    327327#define DECLARE_GLOBAL_STATIC(name) \
    328328    JSDOMGlobalObject::GlobalPropertyInfo( \
    329         clientData.builtinFunctions().guardedInternalBuiltinBuiltins().name##PrivateName(), guardedInternalBuiltin().m_##name##Function.get() , JSC::DontDelete | JSC::ReadOnly),
     329        clientData.builtinFunctions().guardedInternalBuiltinBuiltins().name##PrivateName(), guardedInternalBuiltin().m_##name##Function.get() , JSC::PropertyAttribute::DontDelete | JSC::PropertyAttribute::ReadOnly),
    330330    WEBCORE_FOREACH_GUARDEDINTERNALBUILTIN_BUILTIN_FUNCTION_NAME(DECLARE_GLOBAL_STATIC)
    331331#undef DECLARE_GLOBAL_STATIC
     
    334334#define DECLARE_GLOBAL_STATIC(name) \
    335335    JSDOMGlobalObject::GlobalPropertyInfo( \
    336         clientData.builtinFunctions().xmlCasingTestBuiltins().name##PrivateName(), xmlCasingTest().m_##name##Function.get() , JSC::DontDelete | JSC::ReadOnly),
     336        clientData.builtinFunctions().xmlCasingTestBuiltins().name##PrivateName(), xmlCasingTest().m_##name##Function.get() , JSC::PropertyAttribute::DontDelete | JSC::PropertyAttribute::ReadOnly),
    337337    WEBCORE_FOREACH_XMLCASINGTEST_BUILTIN_FUNCTION_NAME(DECLARE_GLOBAL_STATIC)
    338338#undef DECLARE_GLOBAL_STATIC
Note: See TracChangeset for help on using the changeset viewer.