zig-pug 0.3.1 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binding.gyp +16 -10
- package/index.js +20 -0
- package/index.mjs +19 -2
- package/install.js +58 -0
- package/package.json +9 -6
- package/prebuilts/darwin-arm64/libzig-pug.a +0 -0
- package/prebuilts/darwin-x64/libzig-pug.a +0 -0
- package/prebuilts/linux-arm64/libzig-pug.a +0 -0
- package/prebuilts/linux-x64/libzig-pug.a +0 -0
- package/prebuilts/win32-x64/zig-pug.lib +0 -0
- package/vendor/mujs/COPYING +0 -16
- package/vendor/mujs/README +0 -50
- package/vendor/mujs/astnames.h +0 -92
- package/vendor/mujs/jsarray.c +0 -832
- package/vendor/mujs/jsboolean.c +0 -38
- package/vendor/mujs/jsbuiltin.c +0 -249
- package/vendor/mujs/jscompile.c +0 -1428
- package/vendor/mujs/jsdate.c +0 -861
- package/vendor/mujs/jsdtoa.c +0 -749
- package/vendor/mujs/jserror.c +0 -139
- package/vendor/mujs/jsfunction.c +0 -231
- package/vendor/mujs/jsgc.c +0 -284
- package/vendor/mujs/jsi.h +0 -870
- package/vendor/mujs/jsintern.c +0 -137
- package/vendor/mujs/jslex.c +0 -878
- package/vendor/mujs/jsmath.c +0 -194
- package/vendor/mujs/jsnumber.c +0 -198
- package/vendor/mujs/jsobject.c +0 -560
- package/vendor/mujs/json.c +0 -422
- package/vendor/mujs/jsparse.c +0 -1065
- package/vendor/mujs/jsproperty.c +0 -341
- package/vendor/mujs/jsregexp.c +0 -232
- package/vendor/mujs/jsrepr.c +0 -285
- package/vendor/mujs/jsrun.c +0 -2096
- package/vendor/mujs/jsstate.c +0 -334
- package/vendor/mujs/jsstring.c +0 -852
- package/vendor/mujs/jsvalue.c +0 -708
- package/vendor/mujs/libmujs.a +0 -0
- package/vendor/mujs/main.c +0 -396
- package/vendor/mujs/mujs.h +0 -253
- package/vendor/mujs/one.c +0 -25
- package/vendor/mujs/opnames.h +0 -85
- package/vendor/mujs/pp.c +0 -980
- package/vendor/mujs/regexp.c +0 -1277
- package/vendor/mujs/regexp.h +0 -46
- package/vendor/mujs/utf.c +0 -305
- package/vendor/mujs/utf.h +0 -52
- package/vendor/mujs/utfdata.h +0 -2209
package/vendor/mujs/opnames.h
DELETED
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
"pop",
|
|
2
|
-
"dup",
|
|
3
|
-
"dup2",
|
|
4
|
-
"rot2",
|
|
5
|
-
"rot3",
|
|
6
|
-
"rot4",
|
|
7
|
-
"integer",
|
|
8
|
-
"number",
|
|
9
|
-
"string",
|
|
10
|
-
"closure",
|
|
11
|
-
"newarray",
|
|
12
|
-
"newobject",
|
|
13
|
-
"newregexp",
|
|
14
|
-
"undef",
|
|
15
|
-
"null",
|
|
16
|
-
"true",
|
|
17
|
-
"false",
|
|
18
|
-
"this",
|
|
19
|
-
"current",
|
|
20
|
-
"getlocal",
|
|
21
|
-
"setlocal",
|
|
22
|
-
"dellocal",
|
|
23
|
-
"hasvar",
|
|
24
|
-
"getvar",
|
|
25
|
-
"setvar",
|
|
26
|
-
"delvar",
|
|
27
|
-
"in",
|
|
28
|
-
"skiparray",
|
|
29
|
-
"initarray",
|
|
30
|
-
"initprop",
|
|
31
|
-
"initgetter",
|
|
32
|
-
"initsetter",
|
|
33
|
-
"getprop",
|
|
34
|
-
"getprop_s",
|
|
35
|
-
"setprop",
|
|
36
|
-
"setprop_s",
|
|
37
|
-
"delprop",
|
|
38
|
-
"delprop_s",
|
|
39
|
-
"iterator",
|
|
40
|
-
"nextiter",
|
|
41
|
-
"eval",
|
|
42
|
-
"call",
|
|
43
|
-
"new",
|
|
44
|
-
"typeof",
|
|
45
|
-
"pos",
|
|
46
|
-
"neg",
|
|
47
|
-
"bitnot",
|
|
48
|
-
"lognot",
|
|
49
|
-
"inc",
|
|
50
|
-
"dec",
|
|
51
|
-
"postinc",
|
|
52
|
-
"postdec",
|
|
53
|
-
"mul",
|
|
54
|
-
"div",
|
|
55
|
-
"mod",
|
|
56
|
-
"add",
|
|
57
|
-
"sub",
|
|
58
|
-
"shl",
|
|
59
|
-
"shr",
|
|
60
|
-
"ushr",
|
|
61
|
-
"lt",
|
|
62
|
-
"gt",
|
|
63
|
-
"le",
|
|
64
|
-
"ge",
|
|
65
|
-
"eq",
|
|
66
|
-
"ne",
|
|
67
|
-
"stricteq",
|
|
68
|
-
"strictne",
|
|
69
|
-
"jcase",
|
|
70
|
-
"bitand",
|
|
71
|
-
"bitxor",
|
|
72
|
-
"bitor",
|
|
73
|
-
"instanceof",
|
|
74
|
-
"throw",
|
|
75
|
-
"try",
|
|
76
|
-
"endtry",
|
|
77
|
-
"catch",
|
|
78
|
-
"endcatch",
|
|
79
|
-
"with",
|
|
80
|
-
"endwith",
|
|
81
|
-
"debugger",
|
|
82
|
-
"jump",
|
|
83
|
-
"jtrue",
|
|
84
|
-
"jfalse",
|
|
85
|
-
"return",
|