Escaya
An blazing fast 100% spec compliant, incremental javascript parser written in Typescript
Work in progress
Features
- Conforms to the standard ECMAScript® 2021 (ECMA-262 11th Edition) language specification
- Support for additional ECMAScript features for Web Browsers
- Optionally track syntactic node locations
- Emits an ECMAScript® 2021 compatible abstract syntax tree
- Error recovery mode with incremental parsing support
- Errors diagnostics and reporter
- JSON friendly
- No backtracking
- Low memory usage
- Optimized for use on handheld devices such as a mobile phone or tablet
- Very well tested (~34 000 unit tests with full code coverage)
- Lightweight - ~84 KB minified
API
Escaya generates it's own AST
that is close to the ECMAScript® 2021 specs, and can be used to perform syntactic analysis (parsing) of a JavaScript program, and with ES2015
and later a JavaScript program can be either a script or a module.
This is the available options:
{
next?: boolean;
disableWebCompat?: boolean;
loc?: boolean;
globalReturn?: boolean;
impliedStrict?: boolean;
source?: string;
module?: boolean;
}
Example usage:
import { parseScript, parseModule } from './escaya';
parseScript('({x: [y] = 0} = 1)', { impliedStrict: true });
parseModule('({x: [y] = 0} = 1)');
Error recovery
When Escaya parser is given an input that does not represent a valid JavaScript program, it throws an exception. If parsing in
recovery mode, the parser will continue parsing and produce a syntax tree.
However, Escaya will continue to do a full parse for every keystroke. To avoid this you can enable incremental parsing. This is best demonstrated with an example.
import { recovery, update } from './escaya';
const rootNode = recovery('(foo);', 'filename.js', { module: true });
const ast = update(rootNode, '=> bar;', 'filename.js', { span: { start: 6, length: 0 }, newLength: 7 })
Now when incremental parsing has been enabled, Escaya will reuse nodes from the old tree if possible.
Options
The options for the recovery mode are about the same as for parseScript
and parseModule
except you have to enable {module: true}
if parsing in module goal.
No options can be set during an incremental update because it's only possible to reuse a node if it was parsed in the same context that parser are currently in.
AST
One of the design goals for Escaya has been that the abstract syntax tree (AST) shouldn't change. It should be the same either you are parsing in normal mode
or recovery mode
but there are a couple of exceptions.
For example, in recovery mode
you are creating a RootNode
instead of either a Module
or Script
. This RootNode
has additional information such as diagnostics, context masks and mutual parser flags that you carry over from the recovery mode to the incremental parsing and let you continue to parse in the same context that you are currently in, unless you set a strict directive on the RootNode
. If you do this, Escaya will parse in strict mode and you will not be able to recover any nodes from the old tree if you were first parsing in sloppy mode, because it's only possible to reuse a node if it was parsed with the same context that the parser used before.
Escaya AST
The AST used by used by Escaya
represents the structure of an ECMAScript program as a tree and conforms to the ECMAScript® 2021 specification. The AST have been designed for performance, and it nearly eliminates the chance of accidentally creating an AST that does not represent an ECMAScript program while also requiring fewer bytes than the AST produced by ESTree
and Babel
.
The Escaya AST
doesn't try to follow the SpiderMonkey-compatible standard that ESTree
strictly follows. For example it distinguish Identifier
from IdentifierPattern
. That makes it easier to calculate the free variables of a program.
Reporter
After parsing in recovery mode
, you use use the diagnostic messages to create an nice output so that you are always informed of invalid syntax so you can correct this.
import { recovery, update, report } from './escaya';
const rootNode = recovery('{!', 'error.js');
report(rootNode);
Demo
A live demo can be found here and includes all parts of the parser even code that haven't been open sourced yet.
Incremental parsing have been enabled, and you can see the recovered AST nodes if you open the console in your browser while in recovery mode
.
Performance