tomelam / TDOP

Top Down Operator Precedence

Home Page:http://javascript.crockford.com/tdop/tdop.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TDOP, Top Down Operator Precedence

Douglas Crockford
douglas@crockford.com

2010-11-12

tdop.html contains a description of Vaughn Pratt's Top Down Operator Precedence,
and describes a parser for Simplified JavaScript in Simplified JavaScript.

index.html parses parse.js and displays its AST. The page depends on json2.js
(which is not included in this project) and on parse.js and tokens.js (which
are).

tdop.js contains a Simplified JavaScript parser. See tdop.html for commentary.

tokens.js produces an array of token objects from a string.

About

Top Down Operator Precedence

http://javascript.crockford.com/tdop/tdop.html