zig-pug 0.3.1 → 0.3.2

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.
Files changed (45) hide show
  1. package/binding.gyp +16 -10
  2. package/package.json +4 -3
  3. package/prebuilts/darwin-arm64/libzig-pug.a +0 -0
  4. package/prebuilts/darwin-x64/libzig-pug.a +0 -0
  5. package/prebuilts/linux-arm64/libzig-pug.a +0 -0
  6. package/prebuilts/linux-x64/libzig-pug.a +0 -0
  7. package/prebuilts/win32-x64/zig-pug.lib +0 -0
  8. package/vendor/mujs/COPYING +0 -16
  9. package/vendor/mujs/README +0 -50
  10. package/vendor/mujs/astnames.h +0 -92
  11. package/vendor/mujs/jsarray.c +0 -832
  12. package/vendor/mujs/jsboolean.c +0 -38
  13. package/vendor/mujs/jsbuiltin.c +0 -249
  14. package/vendor/mujs/jscompile.c +0 -1428
  15. package/vendor/mujs/jsdate.c +0 -861
  16. package/vendor/mujs/jsdtoa.c +0 -749
  17. package/vendor/mujs/jserror.c +0 -139
  18. package/vendor/mujs/jsfunction.c +0 -231
  19. package/vendor/mujs/jsgc.c +0 -284
  20. package/vendor/mujs/jsi.h +0 -870
  21. package/vendor/mujs/jsintern.c +0 -137
  22. package/vendor/mujs/jslex.c +0 -878
  23. package/vendor/mujs/jsmath.c +0 -194
  24. package/vendor/mujs/jsnumber.c +0 -198
  25. package/vendor/mujs/jsobject.c +0 -560
  26. package/vendor/mujs/json.c +0 -422
  27. package/vendor/mujs/jsparse.c +0 -1065
  28. package/vendor/mujs/jsproperty.c +0 -341
  29. package/vendor/mujs/jsregexp.c +0 -232
  30. package/vendor/mujs/jsrepr.c +0 -285
  31. package/vendor/mujs/jsrun.c +0 -2096
  32. package/vendor/mujs/jsstate.c +0 -334
  33. package/vendor/mujs/jsstring.c +0 -852
  34. package/vendor/mujs/jsvalue.c +0 -708
  35. package/vendor/mujs/libmujs.a +0 -0
  36. package/vendor/mujs/main.c +0 -396
  37. package/vendor/mujs/mujs.h +0 -253
  38. package/vendor/mujs/one.c +0 -25
  39. package/vendor/mujs/opnames.h +0 -85
  40. package/vendor/mujs/pp.c +0 -980
  41. package/vendor/mujs/regexp.c +0 -1277
  42. package/vendor/mujs/regexp.h +0 -46
  43. package/vendor/mujs/utf.c +0 -305
  44. package/vendor/mujs/utf.h +0 -52
  45. package/vendor/mujs/utfdata.h +0 -2209
@@ -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",