Skip to content

Instantly share code, notes, and snippets.

View btwael's full-sized avatar
🧪
Ensuring Liveness

Wael Boutglay btwael

🧪
Ensuring Liveness
View GitHub Profile
@btwael
btwael / indent.pegjs
Last active December 16, 2015 18:09 — forked from jakubkulhan/indent.pegjs
// do not use result cache, nor line and column tracking
{ var indentStack = [], indent = ""; }
start
= INDENT? lines:( blank / line )*
{ return lines; }
line
= SAMEDENT line:(!EOL c:. { return c; })+ EOL?