You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+2-3
Original file line number
Diff line number
Diff line change
@@ -8,9 +8,8 @@ This project ports some ideas [Russ Cox](http://swtch.com/~rsc/) shared on
8
8
[how Google Code Search works](http://swtch.com/~rsc/regexp/regexp4.html) — in
9
9
particular the [`RegexpQuery` and related functions](https://code.google.com/p/codesearch/source/browse/index/regexp.go) —
10
10
from Go to JavaScript. Since JavaScript doesn't have an equivalent to Go's [`regexp/syntax`](http://golang.org/pkg/regexp/syntax/),
11
-
we also use [PEG.js](http://pegjs.majda.cz/) to introduce a simplified regular
12
-
expression grammar to obtain parse trees for a subset of valid [`RegExp`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp)
13
-
patterns.
11
+
use [PEG.js](http://pegjs.majda.cz/) to introduce a simplified regular
12
+
expression grammar and obtain a parse tree.
14
13
15
14
The goal is to query trigram indexes from JS clients.
0 commit comments