Commit 58da918e authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

jscript: Make several constants static.

parent 05cf1185
...@@ -693,7 +693,7 @@ static HRESULT compile_delete_expression(compiler_ctx_t *ctx, unary_expression_t ...@@ -693,7 +693,7 @@ static HRESULT compile_delete_expression(compiler_ctx_t *ctx, unary_expression_t
case EXPR_IDENT: case EXPR_IDENT:
return push_instr_bstr(ctx, OP_delete_ident, ((identifier_expression_t*)expr->expression)->identifier); return push_instr_bstr(ctx, OP_delete_ident, ((identifier_expression_t*)expr->expression)->identifier);
default: { default: {
const WCHAR fixmeW[] = {'F','I','X','M','E',0}; static const WCHAR fixmeW[] = {'F','I','X','M','E',0};
WARN("invalid delete, unimplemented exception message\n"); WARN("invalid delete, unimplemented exception message\n");
......
...@@ -487,7 +487,7 @@ static HRESULT json_quote(stringify_ctx_t *ctx, const WCHAR *ptr, size_t len) ...@@ -487,7 +487,7 @@ static HRESULT json_quote(stringify_ctx_t *ctx, const WCHAR *ptr, size_t len)
break; break;
default: default:
if(*ptr < ' ') { if(*ptr < ' ') {
const WCHAR formatW[] = {'\\','u','%','0','4','x',0}; static const WCHAR formatW[] = {'\\','u','%','0','4','x',0};
WCHAR buf[7]; WCHAR buf[7];
sprintfW(buf, formatW, *ptr); sprintfW(buf, formatW, *ptr);
if(!append_string(ctx, buf)) if(!append_string(ctx, buf))
......
...@@ -718,7 +718,7 @@ static jsstr_t *int_to_string(int i) ...@@ -718,7 +718,7 @@ static jsstr_t *int_to_string(int i)
HRESULT double_to_string(double n, jsstr_t **str) HRESULT double_to_string(double n, jsstr_t **str)
{ {
const WCHAR InfinityW[] = {'-','I','n','f','i','n','i','t','y',0}; static const WCHAR InfinityW[] = {'-','I','n','f','i','n','i','t','y',0};
if(isnan(n)) { if(isnan(n)) {
*str = jsstr_nan(); *str = jsstr_nan();
...@@ -748,9 +748,9 @@ HRESULT double_to_string(double n, jsstr_t **str) ...@@ -748,9 +748,9 @@ HRESULT double_to_string(double n, jsstr_t **str)
/* ECMA-262 3rd Edition 9.8 */ /* ECMA-262 3rd Edition 9.8 */
HRESULT to_string(script_ctx_t *ctx, jsval_t val, jsstr_t **str) HRESULT to_string(script_ctx_t *ctx, jsval_t val, jsstr_t **str)
{ {
const WCHAR nullW[] = {'n','u','l','l',0}; static const WCHAR nullW[] = {'n','u','l','l',0};
const WCHAR trueW[] = {'t','r','u','e',0}; static const WCHAR trueW[] = {'t','r','u','e',0};
const WCHAR falseW[] = {'f','a','l','s','e',0}; static const WCHAR falseW[] = {'f','a','l','s','e',0};
switch(jsval_type(val)) { switch(jsval_type(val)) {
case JSV_UNDEFINED: case JSV_UNDEFINED:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment