summary refs log tree commit diff stats
path: root/lib/js/jsffi.nim
Commit message (Collapse)AuthorAgeFilesLines
* Replace NotString with typeclass in jsffi (#8128)hlaaf2018-06-271-4/+2
|
* Support code hot reloading for JavaScript projects (#7362)zah2018-04-131-6/+18
| | | | | | | | | | | | | | | | | | | | | | * Support code hot reloading for JavaScript projects * Add some missing JavaScript symbols and APIs * fix the Travis build * (review changes) remove the js type from the standard library as it doesn't follow NEP-1 * more additions to the DOM module * Follow NEP-1 in jsffi; spell 'hot code reloading' correctly * introduce a jscore module * Document jscore module. * readded js type * Remove the '$' operator that doesn't behave
* language change: change how the experimental dot operators workAndreas Rumpf2017-11-291-11/+11
|
* make tests green againAndreas Rumpf2017-09-261-3/+3
|
* Restore the old behavior of parsing "quote do:"Zahary Karadjov2017-08-191-4/+3
| | | | close #5845
* allow StmtLists to pass through semExprWithTypeZahary Karadjov2017-04-111-4/+1
| | | | | | This fix was necessary in order to fix the lambda lifting used in the "jsffi" module, which relies on turning nkStmtList into nkLambda in a catch-all dot operator.
* lift parameter-less do block to lambdasZahary Karadjov2017-04-101-2/+8
|
* improve the usability of the jsffi moduleZahary Karadjov2017-04-091-6/+56
| | | | | | * All JavaScript operators are usable with JsObject * The dot operators will use native JavaScript strings * Results returned from dot calls are consired discardable
* Implement RFC #4873 improvements to JavaScript FFI (#5213)Michael Jendrusch2017-01-261-0/+436
gt; 2008-02-23 23:11:27 +0000 committer anselm@anselm1 <unknown> 2008-02-23 23:11:27 +0000 pushing my changes of tonight upstream (hg tip is NOW very UNSTABLE -- but those changes are necessary to get a decent multihead support) -- I renamed Monitor into View, to reflect in a better way the dwm terminology of the past' href='/acidbong/suckless/dwm/commit/config.def.h?h=6.4&id=a3d8c05a95edbd4dad544c3373301551440c8092'>a3d8c05 ^
f196b71 ^
3794c62 ^
f196b71 ^
8d1810c ^
6f60b2e ^
8d1810c ^
39af3c2 ^
fe2775a ^
0235a84 ^


39af3c2 ^
3794c62 ^

f196b71 ^

e9a0733 ^


308f95a ^
e9a0733 ^
e9a0733 ^
39af3c2 ^


e9a0733 ^



d66ad14 ^
e9a0733 ^










































b515765 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96