Skip to content

Commit d7e2125

Browse files
authoredMay 28, 2024
Fix arguments object in eval-ed functions in static class initializers (#5140)
JerryScript-DCO-1.0-Signed-off-by: Máté Tokodi [email protected]
1 parent 35465ed commit d7e2125

File tree

3 files changed

+39
-0
lines changed

3 files changed

+39
-0
lines changed
 

‎jerry-core/parser/js/js-scanner-internal.h

+2
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,8 @@ typedef enum
125125
#if JERRY_DEBUGGER
126126
SCANNER_CONTEXT_DEBUGGER_ENABLED = (1 << 1), /**< debugger is enabled */
127127
#endif /* JERRY_DEBUGGER */
128+
SCANNER_CONTEXT_RESTORE_INSIDE_CLASS_FIELD_FLAG =
129+
(1 << 2), /**< restore the PARSER_INSIDE_CLASS_FIELD flag of the main context */
128130
} scanner_context_flags_t;
129131

130132
/**

‎jerry-core/parser/js/js-scanner.c

+11
Original file line numberDiff line numberDiff line change
@@ -1534,6 +1534,11 @@ scanner_scan_statement (parser_context_t *context_p, /**< context */
15341534
}
15351535
case LEXER_KEYW_FUNCTION:
15361536
{
1537+
if (context_p->status_flags & PARSER_INSIDE_CLASS_FIELD)
1538+
{
1539+
scanner_context_p->status_flags |= SCANNER_CONTEXT_RESTORE_INSIDE_CLASS_FIELD_FLAG;
1540+
context_p->status_flags &= (uint32_t) ~(PARSER_INSIDE_CLASS_FIELD);
1541+
}
15371542
uint16_t status_flags = SCANNER_LITERAL_POOL_FUNCTION | SCANNER_LITERAL_POOL_FUNCTION_STATEMENT;
15381543

15391544
if (scanner_context_p->async_source_p != NULL)
@@ -2016,6 +2021,12 @@ scanner_scan_statement_end (parser_context_t *context_p, /**< context */
20162021
break;
20172022
}
20182023

2024+
if (scanner_context_p->status_flags & SCANNER_CONTEXT_RESTORE_INSIDE_CLASS_FIELD_FLAG)
2025+
{
2026+
context_p->status_flags |= PARSER_INSIDE_CLASS_FIELD;
2027+
scanner_context_p->status_flags &= (uint16_t) ~(SCANNER_CONTEXT_RESTORE_INSIDE_CLASS_FIELD_FLAG);
2028+
}
2029+
20192030
if (context_p->stack_top_uint8 != SCAN_STACK_CLASS_STATEMENT)
20202031
{
20212032
scanner_pop_literal_pool (context_p, scanner_context_p);
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// Copyright JS Foundation and other contributors, http://js.foundation
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
class Outer {
16+
static {
17+
eval(`
18+
function staticfunc() {
19+
arguments;
20+
}
21+
22+
class Inner {
23+
}
24+
`);
25+
}
26+
}

0 commit comments

Comments
 (0)