(ident)
| 239 | |
| 240 | // Returns true if ident is a niceIdent (see toNiceIdent). Also allow () and spaces. |
| 241 | function isNiceIdent(ident) { |
| 242 | return /^\(?[$_]+[\w$_\d ]*\)?$/.test(ident); |
| 243 | } |
| 244 | |
| 245 | export const POINTER_SIZE = MEMORY64 ? 8 : 4; |
| 246 | const POINTER_MAX = MEMORY64 ? 'Number.MAX_SAFE_INTEGER' : '0xFFFFFFFF'; |
no test coverage detected