Lines Matching refs:strict
89 #### keyword.isKeywordES5(id, strict)
94 respectively. If the `strict` flag is truthy, this function additionally checks whether
95 `id` is a Keyword or Future Reserved Word under strict mode.
97 #### keyword.isKeywordES6(id, strict)
103 respectively. If the `strict` flag is truthy, this function additionally checks whether
104 `id` is a Keyword or Future Reserved Word under strict mode.
106 #### keyword.isReservedWordES5(id, strict)
110 If the `strict` flag is truthy, this function additionally checks whether `id`
111 is a Reserved Word under strict mode.
113 #### keyword.isReservedWordES6(id, strict)
117 If the `strict` flag is truthy, this function additionally checks whether `id`
118 is a Reserved Word under strict mode.
123 They are restricted in strict mode code throughout ECMA262 edition 5.1 and
136 #### keyword.isIdentifierES5(id, strict)
139 ECMA262 edition 5.1 section [7.6](https://es5.github.io/#x7.6). If the `strict`
141 under strict mode.
143 #### keyword.isIdentifierES6(id, strict)
147 If the `strict` flag is truthy, this function additionally checks whether `id`
148 is an Identifier under strict mode.