Flatten src directory

* Move src/app to src/
  * Move src/stdlib to src/
  * Remove src/app and src/stdlib from NODE_PATH
This commit is contained in:
Kevin Sawicki
2013-08-14 10:46:20 -07:00
parent 45c11e6fd4
commit 76332c76bd
60 changed files with 0 additions and 2 deletions

View File

@@ -0,0 +1,3 @@
keystrokePattern = key:key additionalKeys:additionalKey* { return [key].concat(additionalKeys); }
additionalKey = '-' key:key { return key; }
key = '-' / chars:[^-]+ { return chars.join('') }