You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ParseBox provides combinators for parsing common lexical tokens, such as numbers, identifiers, and strings, enabling static, optimized parsing of typical JavaScript constructs.
240
+
ParseBox includes several specialized combinators used to quickly parse common language tokens.
const E =Runtime.Parse(T, '01') // const E = ['0', '1']
258
315
```
259
316
260
317
### String
@@ -269,30 +326,7 @@ const T = Runtime.String(['"'])
269
326
const R =Runtime.Parse(T, '"hello"') // const R = ['hello', '']
270
327
```
271
328
272
-
### Ident
273
-
274
-
Parses valid JavaScript identifiers, typically used to extract variable or function names. The following example demonstrates parsing a `let` statement.
0 commit comments