mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
452 B
10 lines
452 B
define: DUK_OPT_NO_NONSTD_FUNC_STMT
|
|
introduced: 1.0.0
|
|
tags:
|
|
- ecmascript
|
|
description: >
|
|
Disable support for function declarations outside program or function top
|
|
level (also known as "function statements"). Such declarations are
|
|
non-standard and the strictly compliant behavior is to treat them as a
|
|
SyntaxError. Default behavior is to treat them like ordinary function
|
|
declarations ("hoist" them to function top) with V8-like semantics.
|
|
|