File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
var Expr = require ( './expr' ) ;
2
- var Set = require ( 'set' ) ;
2
+ var Set = require ( 'immutable' ) . Set ;
3
3
4
4
5
5
// This is basically an interactive tutorial you can run
Original file line number Diff line number Diff line change 9
9
"dependencies" : {
10
10
"adt" : " ~0.7.2" ,
11
11
"parsimmon" : " ~0.5.1" ,
12
- "set " : " ~1 .1.1 " ,
13
- "util-is" : " ~0.1.0 "
12
+ "util-is " : " ~0 .1.0 " ,
13
+ "immutable" : " ~2.0.17 "
14
14
},
15
15
"author" :
" Deian Stefan <[email protected] > (http://deian.net/)" ,
16
16
"license" : " MIT"
Original file line number Diff line number Diff line change 1
1
2
2
var Expr = require ( './lib/expr' ) ;
3
+ var Set = require ( 'immutable' ) . Set ;
3
4
4
5
var t1 = Expr . parse ( '(/x. y) ((/x. x x) (/y. y))' ) ;
5
6
var t2 = Expr . parse ( '(/x. (/y. x y)) (/x. (x y) z)' ) ;
You can’t perform that action at this time.
0 commit comments