zig-pug 0.2.0

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