X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/14957cd040308e3eeec43d26bae5d76da13fcd85..1981f5dfe8d77d97469d20652f712a09400c48ed:/runtime/CommonIdentifiers.h diff --git a/runtime/CommonIdentifiers.h b/runtime/CommonIdentifiers.h index f74a843..e15335e 100644 --- a/runtime/CommonIdentifiers.h +++ b/runtime/CommonIdentifiers.h @@ -27,12 +27,9 @@ // MarkedArgumentBuffer of property names, passed to a macro so we can do set them up various // ways without repeating the list. #define JSC_COMMON_IDENTIFIERS_EACH_PROPERTY_NAME(macro) \ - macro(__defineGetter__) \ - macro(__defineSetter__) \ - macro(__lookupGetter__) \ - macro(__lookupSetter__) \ macro(apply) \ macro(arguments) \ + macro(bind) \ macro(call) \ macro(callee) \ macro(caller) \ @@ -51,6 +48,7 @@ macro(input) \ macro(isArray) \ macro(isPrototypeOf) \ + macro(lastIndex) \ macro(length) \ macro(message) \ macro(multiline) \ @@ -61,6 +59,7 @@ macro(prototype) \ macro(set) \ macro(source) \ + macro(stack) \ macro(test) \ macro(toExponential) \ macro(toFixed) \ @@ -73,10 +72,12 @@ macro(value) \ macro(valueOf) \ macro(writable) \ - macro(displayName) + macro(displayName) \ + macro(join) #define JSC_COMMON_IDENTIFIERS_EACH_KEYWORD(macro) \ macro(null) \ + macro(undefined) \ macro(true) \ macro(false) \ macro(break) \ @@ -111,7 +112,16 @@ macro(export) \ macro(extends) \ macro(import) \ - macro(super) + macro(super) \ + macro(implements) \ + macro(interface) \ + macro(let) \ + macro(package) \ + macro(private) \ + macro(protected) \ + macro(public) \ + macro(static) \ + macro(yield) namespace JSC {