jexer
v0.2.0
Published
a lexer in javascript
Downloads
5
Maintainers
Readme
jexer
jexer
is a lexer.
jexer
is not a lexer generator. lex
and flex
are classic examples of lexer
generators.
Currently, rule configuration and lexing are performed at runtime.
Installation
Install jexer
with npm.
$ npm install [--save] jexer
Usage
const Jexer = require('jexer');
const jexer = new Jexer();
jexer.addRule(...);
const tokens = jexer.tokenize('string of source code');
A quick lesson in compilation
A scanner scans a file into a sequence of characters. (If using Node.js,
you can rely on the built-in fs
module for this.)
A lexer (or tokenizer) lexes a sequence of characters into a sequence of
tokens, using a defined set of rules. (This is what jexer
does.)
A parser parses a sequence of tokens into a syntax tree, using a defined
set of rules. (I recommend jarser
for this stage:
jarser
on npm
jarser
on GitHub)
A compiler compiles the syntax tree into target code, such as assembly.
An assembler assembles that code into machine code, which a processor can execute directly.
API
The Jexer
object
new Jexer()
- Returns an instance of
Jexer
.
Jexer.addRule([state,] pattern, [tokenName [, newState]])
state
<string> Default:'INITIAL'
(the initial/default state)pattern
<RegExp>tokenName
<string> | <Function> Default:undefined
(swallow token)text
<string>line
<integer>column
<integer>
newState
<string> Default:undefined
(do not change state)
Add a rule to the lexer. A match pattern
is required.
If a state
is provided, the rule only applies to the state specified. If no
state
is provided, the rule only applies in the initial/default state, which
is 'INITIAL'
.
If tokenName
is a string
, the lexed token is added to the output with the
given name.
If tokenName
is a function
, it is called with three arguments (text, line,
column)
, where test
is the text that matched the rule's pattern and line
and column
indicate the position of the text within the source code that is
being tokenized. The function should return a tokenName
; functions without
return values (equivalent to return undefined;
) result in the token being
swallowed. Passing a function is useful for debugging, logging, or for
validating state. Throwing an error in this function halts execution of the
lexer.
If tokenName
is undefined
, whether implicitly or explicitly,
the token is swallowed and omitted from the output. If you want to swallow a
token and enter a newState
, you must explicitly pass undefined
for
tokenName
.
If newState
if provided, the lexer will enter this state after this rule is
matched. Pass 'INITIAL'
to return to the default/initial state.
Jexer.tokenize(sourceCode)
sourceCode
<string>- returns <Array<Token>>
Returns an Array
of Token
objects.
Throws an Error
if there is a problem parsing the source code, i.e. if the
lexer encounters text that doesn't match any defined rules.
The Token
object
A Token
is a 'plain old javascript object' with these keys:
name
<string> the name of the tokentext
<string> the text that was matchedline
<integer> the line number of the first character of the tokencolumn
<integer> the column number of the first character of the token
Examples
// ignore whitespace
jexer.addRule(/\s/);
// operators
jexer.addRule(/\+/, 'PLUS');
jexer.addRule(/\-/, 'MINUS');
jexer.addRule(/\*/, 'ASTERISK');
jexer.addRule(/\//, 'SLASH');
jexer.addRule(/=/, 'EQUALS');
// keywords
jexer.addRule(/if/, 'IF');
jexer.addRule(/true/, 'TRUE');
jexer.addRule(/false/, 'FALSE');
// variables
jexer.addRule(/[a-zA-Z_$][0-9a-zA-Z_$]*/, 'VARIABLE');
// log and lex every character as its own token
jexer.addRule(/./s, (text, line, column) => {
console.log('found '+JSON.stringify(text)+' at '+line+':'+column);
}, 'CHARACTER');
// throw an error on tokens reserved for future use
jexer.addRule(/(import|export)/, (text, line, column) => {
throw new Error('Error at '+line+':'+column+'. '+text+' is reserved!');
});
Common uses for changing state:
// SINGLE LINE COMMENTS
// match '//', ignore it, and enter the 'COMMENT' state
jexer.addRule(/\/\//, undefined, 'COMMENT');
// in the 'COMMENT' state, watch for a newline, and return to 'INITIAL' state
jexer.addRule('COMMENT', /\n/, undefined, 'INITIAL');
// ignore any other characters in the comment
jexer.addRule('COMMENT', /./);
// MULTI LINE COMMENTS
// match '/*', ignore it, and enter the 'COMMENT' state
jexer.addRule(/\/\*/, undefined, 'MULTILINE_COMMENT');
// match '*/' newline, and return to 'INITIAL' state
jexer.addRule('MULTILINE_COMMENT', /\*\//, undefined, 'INITIAL');
// ignore all characters in the comment, even new lines
jexer.addRule('MULTILINE_COMMENT', /./s);
Below is a full example of the definition of the lexical grammar for a simple
calculator language which ignores whitespace; has semicolon terminated
statements, single-line comments, and variables; has addition, subtraction,
and assignment operators; and supports integer, floating point, binary, and
hexadecimal number literals. Any other token (such as *
or /
) will throw
a lexing error.
jexer.addRule(/\s/);
jexer.addRule(/;/, 'SEMICOLON');
jexer.addRule(/\n#/, undefined, 'COMMENT');
jexer.addRule('COMMENT', /\n/, undefined, 'INITIAL');
jexer.addRule('COMMENT', /./);
jexer.addRule(/[a-z][a-zA-Z]*/, 'VARIABLE');
jexer.addRule(/\+/, 'PLUS');
jexer.addRule(/-/, 'MINUS');
jexer.addRule(/=/, 'EQUALS');
jexer.addRule(/[0-9]+/, 'INTEGER');
jexer.addRule(/[0-9]+\.[0-9]+/, 'FLOAT');
jexer.addRule(/0b[0-1]+/, 'BINARY_LITERAL');
jexer.addRule(/0x[0-9a-fA-F]+/, 'HEXADECIMAL_LITERAL');