Tamar 0.7.5 → 0.7.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (118) hide show
  1. data/.gitmodules +3 -0
  2. data/HISTORY +22 -5
  3. data/Tamar.gemspec +114 -1
  4. data/VERSION +1 -1
  5. data/src/lua/CMakeLists.txt +176 -0
  6. data/src/lua/COPYRIGHT +34 -0
  7. data/src/lua/FindReadline.cmake +25 -0
  8. data/src/lua/HISTORY +183 -0
  9. data/src/lua/INSTALL +99 -0
  10. data/src/lua/Makefile +128 -0
  11. data/src/lua/README +46 -0
  12. data/src/lua/dist.cmake +450 -0
  13. data/src/lua/dist.info +10 -0
  14. data/src/lua/doc/amazon.gif +0 -0
  15. data/src/lua/doc/contents.html +499 -0
  16. data/src/lua/doc/cover.png +0 -0
  17. data/src/lua/doc/logo.gif +0 -0
  18. data/src/lua/doc/lua.1 +163 -0
  19. data/src/lua/doc/lua.css +41 -0
  20. data/src/lua/doc/lua.html +172 -0
  21. data/src/lua/doc/luac.1 +136 -0
  22. data/src/lua/doc/luac.html +145 -0
  23. data/src/lua/doc/manual.css +13 -0
  24. data/src/lua/doc/manual.html +8801 -0
  25. data/src/lua/doc/readme.html +40 -0
  26. data/src/lua/etc/Makefile +44 -0
  27. data/src/lua/etc/README +37 -0
  28. data/src/lua/etc/all.c +38 -0
  29. data/src/lua/etc/lua.hpp +9 -0
  30. data/src/lua/etc/lua.ico +0 -0
  31. data/src/lua/etc/lua.pc +31 -0
  32. data/src/lua/etc/luavs.bat +28 -0
  33. data/src/lua/etc/min.c +39 -0
  34. data/src/lua/etc/noparser.c +50 -0
  35. data/src/lua/etc/strict.lua +41 -0
  36. data/src/lua/src/Makefile +182 -0
  37. data/src/lua/src/lapi.c +1087 -0
  38. data/src/lua/src/lapi.h +16 -0
  39. data/src/lua/src/lauxlib.c +652 -0
  40. data/src/lua/src/lauxlib.h +174 -0
  41. data/src/lua/src/lbaselib.c +653 -0
  42. data/src/lua/src/lcode.c +831 -0
  43. data/src/lua/src/lcode.h +76 -0
  44. data/src/lua/src/ldblib.c +398 -0
  45. data/src/lua/src/ldebug.c +638 -0
  46. data/src/lua/src/ldebug.h +33 -0
  47. data/src/lua/src/ldo.c +518 -0
  48. data/src/lua/src/ldo.h +57 -0
  49. data/src/lua/src/ldump.c +164 -0
  50. data/src/lua/src/lfunc.c +174 -0
  51. data/src/lua/src/lfunc.h +34 -0
  52. data/src/lua/src/lgc.c +711 -0
  53. data/src/lua/src/lgc.h +110 -0
  54. data/src/lua/src/linit.c +38 -0
  55. data/src/lua/src/liolib.c +556 -0
  56. data/src/lua/src/llex.c +463 -0
  57. data/src/lua/src/llex.h +81 -0
  58. data/src/lua/src/llimits.h +128 -0
  59. data/src/lua/src/lmathlib.c +263 -0
  60. data/src/lua/src/lmem.c +86 -0
  61. data/src/lua/src/lmem.h +49 -0
  62. data/src/lua/src/loadlib.c +666 -0
  63. data/src/lua/src/loadlib_rel.c +719 -0
  64. data/src/lua/src/lobject.c +214 -0
  65. data/src/lua/src/lobject.h +381 -0
  66. data/src/lua/src/lopcodes.c +102 -0
  67. data/src/lua/src/lopcodes.h +268 -0
  68. data/src/lua/src/loslib.c +243 -0
  69. data/src/lua/src/lparser.c +1339 -0
  70. data/src/lua/src/lparser.h +82 -0
  71. data/src/lua/src/lstate.c +214 -0
  72. data/src/lua/src/lstate.h +169 -0
  73. data/src/lua/src/lstring.c +111 -0
  74. data/src/lua/src/lstring.h +31 -0
  75. data/src/lua/src/lstrlib.c +871 -0
  76. data/src/lua/src/ltable.c +588 -0
  77. data/src/lua/src/ltable.h +40 -0
  78. data/src/lua/src/ltablib.c +287 -0
  79. data/src/lua/src/ltm.c +75 -0
  80. data/src/lua/src/ltm.h +54 -0
  81. data/src/lua/src/lua.c +392 -0
  82. data/src/lua/src/lua.def +131 -0
  83. data/src/lua/src/lua.h +388 -0
  84. data/src/lua/src/lua.rc +28 -0
  85. data/src/lua/src/lua_dll.rc +26 -0
  86. data/src/lua/src/luac.c +200 -0
  87. data/src/lua/src/luac.rc +1 -0
  88. data/src/lua/src/luaconf.h.in +724 -0
  89. data/src/lua/src/luaconf.h.orig +763 -0
  90. data/src/lua/src/lualib.h +53 -0
  91. data/src/lua/src/lundump.c +227 -0
  92. data/src/lua/src/lundump.h +36 -0
  93. data/src/lua/src/lvm.c +766 -0
  94. data/src/lua/src/lvm.h +36 -0
  95. data/src/lua/src/lzio.c +82 -0
  96. data/src/lua/src/lzio.h +67 -0
  97. data/src/lua/src/print.c +227 -0
  98. data/src/lua/test/README +26 -0
  99. data/src/lua/test/bisect.lua +27 -0
  100. data/src/lua/test/cf.lua +16 -0
  101. data/src/lua/test/echo.lua +5 -0
  102. data/src/lua/test/env.lua +7 -0
  103. data/src/lua/test/factorial.lua +32 -0
  104. data/src/lua/test/fib.lua +40 -0
  105. data/src/lua/test/fibfor.lua +13 -0
  106. data/src/lua/test/globals.lua +13 -0
  107. data/src/lua/test/hello.lua +3 -0
  108. data/src/lua/test/life.lua +111 -0
  109. data/src/lua/test/luac.lua +7 -0
  110. data/src/lua/test/printf.lua +7 -0
  111. data/src/lua/test/readonly.lua +12 -0
  112. data/src/lua/test/sieve.lua +29 -0
  113. data/src/lua/test/sort.lua +66 -0
  114. data/src/lua/test/table.lua +12 -0
  115. data/src/lua/test/trace-calls.lua +32 -0
  116. data/src/lua/test/trace-globals.lua +38 -0
  117. data/src/lua/test/xd.lua +14 -0
  118. metadata +115 -2
@@ -0,0 +1,174 @@
1
+ /*
2
+ ** $Id: lauxlib.h,v 1.88.1.1 2007/12/27 13:02:25 roberto Exp $
3
+ ** Auxiliary functions for building Lua libraries
4
+ ** See Copyright Notice in lua.h
5
+ */
6
+
7
+
8
+ #ifndef lauxlib_h
9
+ #define lauxlib_h
10
+
11
+
12
+ #include <stddef.h>
13
+ #include <stdio.h>
14
+
15
+ #include "lua.h"
16
+
17
+
18
+ #if defined(LUA_COMPAT_GETN)
19
+ LUALIB_API int (luaL_getn) (lua_State *L, int t);
20
+ LUALIB_API void (luaL_setn) (lua_State *L, int t, int n);
21
+ #else
22
+ #define luaL_getn(L,i) ((int)lua_objlen(L, i))
23
+ #define luaL_setn(L,i,j) ((void)0) /* no op! */
24
+ #endif
25
+
26
+ #if defined(LUA_COMPAT_OPENLIB)
27
+ #define luaI_openlib luaL_openlib
28
+ #endif
29
+
30
+
31
+ /* extra error code for `luaL_load' */
32
+ #define LUA_ERRFILE (LUA_ERRERR+1)
33
+
34
+
35
+ typedef struct luaL_Reg {
36
+ const char *name;
37
+ lua_CFunction func;
38
+ } luaL_Reg;
39
+
40
+
41
+
42
+ LUALIB_API void (luaI_openlib) (lua_State *L, const char *libname,
43
+ const luaL_Reg *l, int nup);
44
+ LUALIB_API void (luaL_register) (lua_State *L, const char *libname,
45
+ const luaL_Reg *l);
46
+ LUALIB_API int (luaL_getmetafield) (lua_State *L, int obj, const char *e);
47
+ LUALIB_API int (luaL_callmeta) (lua_State *L, int obj, const char *e);
48
+ LUALIB_API int (luaL_typerror) (lua_State *L, int narg, const char *tname);
49
+ LUALIB_API int (luaL_argerror) (lua_State *L, int numarg, const char *extramsg);
50
+ LUALIB_API const char *(luaL_checklstring) (lua_State *L, int numArg,
51
+ size_t *l);
52
+ LUALIB_API const char *(luaL_optlstring) (lua_State *L, int numArg,
53
+ const char *def, size_t *l);
54
+ LUALIB_API lua_Number (luaL_checknumber) (lua_State *L, int numArg);
55
+ LUALIB_API lua_Number (luaL_optnumber) (lua_State *L, int nArg, lua_Number def);
56
+
57
+ LUALIB_API lua_Integer (luaL_checkinteger) (lua_State *L, int numArg);
58
+ LUALIB_API lua_Integer (luaL_optinteger) (lua_State *L, int nArg,
59
+ lua_Integer def);
60
+
61
+ LUALIB_API void (luaL_checkstack) (lua_State *L, int sz, const char *msg);
62
+ LUALIB_API void (luaL_checktype) (lua_State *L, int narg, int t);
63
+ LUALIB_API void (luaL_checkany) (lua_State *L, int narg);
64
+
65
+ LUALIB_API int (luaL_newmetatable) (lua_State *L, const char *tname);
66
+ LUALIB_API void *(luaL_checkudata) (lua_State *L, int ud, const char *tname);
67
+
68
+ LUALIB_API void (luaL_where) (lua_State *L, int lvl);
69
+ LUALIB_API int (luaL_error) (lua_State *L, const char *fmt, ...);
70
+
71
+ LUALIB_API int (luaL_checkoption) (lua_State *L, int narg, const char *def,
72
+ const char *const lst[]);
73
+
74
+ LUALIB_API int (luaL_ref) (lua_State *L, int t);
75
+ LUALIB_API void (luaL_unref) (lua_State *L, int t, int ref);
76
+
77
+ LUALIB_API int (luaL_loadfile) (lua_State *L, const char *filename);
78
+ LUALIB_API int (luaL_loadbuffer) (lua_State *L, const char *buff, size_t sz,
79
+ const char *name);
80
+ LUALIB_API int (luaL_loadstring) (lua_State *L, const char *s);
81
+
82
+ LUALIB_API lua_State *(luaL_newstate) (void);
83
+
84
+
85
+ LUALIB_API const char *(luaL_gsub) (lua_State *L, const char *s, const char *p,
86
+ const char *r);
87
+
88
+ LUALIB_API const char *(luaL_findtable) (lua_State *L, int idx,
89
+ const char *fname, int szhint);
90
+
91
+
92
+
93
+
94
+ /*
95
+ ** ===============================================================
96
+ ** some useful macros
97
+ ** ===============================================================
98
+ */
99
+
100
+ #define luaL_argcheck(L, cond,numarg,extramsg) \
101
+ ((void)((cond) || luaL_argerror(L, (numarg), (extramsg))))
102
+ #define luaL_checkstring(L,n) (luaL_checklstring(L, (n), NULL))
103
+ #define luaL_optstring(L,n,d) (luaL_optlstring(L, (n), (d), NULL))
104
+ #define luaL_checkint(L,n) ((int)luaL_checkinteger(L, (n)))
105
+ #define luaL_optint(L,n,d) ((int)luaL_optinteger(L, (n), (d)))
106
+ #define luaL_checklong(L,n) ((long)luaL_checkinteger(L, (n)))
107
+ #define luaL_optlong(L,n,d) ((long)luaL_optinteger(L, (n), (d)))
108
+
109
+ #define luaL_typename(L,i) lua_typename(L, lua_type(L,(i)))
110
+
111
+ #define luaL_dofile(L, fn) \
112
+ (luaL_loadfile(L, fn) || lua_pcall(L, 0, LUA_MULTRET, 0))
113
+
114
+ #define luaL_dostring(L, s) \
115
+ (luaL_loadstring(L, s) || lua_pcall(L, 0, LUA_MULTRET, 0))
116
+
117
+ #define luaL_getmetatable(L,n) (lua_getfield(L, LUA_REGISTRYINDEX, (n)))
118
+
119
+ #define luaL_opt(L,f,n,d) (lua_isnoneornil(L,(n)) ? (d) : f(L,(n)))
120
+
121
+ /*
122
+ ** {======================================================
123
+ ** Generic Buffer manipulation
124
+ ** =======================================================
125
+ */
126
+
127
+
128
+
129
+ typedef struct luaL_Buffer {
130
+ char *p; /* current position in buffer */
131
+ int lvl; /* number of strings in the stack (level) */
132
+ lua_State *L;
133
+ char buffer[LUAL_BUFFERSIZE];
134
+ } luaL_Buffer;
135
+
136
+ #define luaL_addchar(B,c) \
137
+ ((void)((B)->p < ((B)->buffer+LUAL_BUFFERSIZE) || luaL_prepbuffer(B)), \
138
+ (*(B)->p++ = (char)(c)))
139
+
140
+ /* compatibility only */
141
+ #define luaL_putchar(B,c) luaL_addchar(B,c)
142
+
143
+ #define luaL_addsize(B,n) ((B)->p += (n))
144
+
145
+ LUALIB_API void (luaL_buffinit) (lua_State *L, luaL_Buffer *B);
146
+ LUALIB_API char *(luaL_prepbuffer) (luaL_Buffer *B);
147
+ LUALIB_API void (luaL_addlstring) (luaL_Buffer *B, const char *s, size_t l);
148
+ LUALIB_API void (luaL_addstring) (luaL_Buffer *B, const char *s);
149
+ LUALIB_API void (luaL_addvalue) (luaL_Buffer *B);
150
+ LUALIB_API void (luaL_pushresult) (luaL_Buffer *B);
151
+
152
+
153
+ /* }====================================================== */
154
+
155
+
156
+ /* compatibility with ref system */
157
+
158
+ /* pre-defined references */
159
+ #define LUA_NOREF (-2)
160
+ #define LUA_REFNIL (-1)
161
+
162
+ #define lua_ref(L,lock) ((lock) ? luaL_ref(L, LUA_REGISTRYINDEX) : \
163
+ (lua_pushstring(L, "unlocked references are obsolete"), lua_error(L), 0))
164
+
165
+ #define lua_unref(L,ref) luaL_unref(L, LUA_REGISTRYINDEX, (ref))
166
+
167
+ #define lua_getref(L,ref) lua_rawgeti(L, LUA_REGISTRYINDEX, (ref))
168
+
169
+
170
+ #define luaL_reg luaL_Reg
171
+
172
+ #endif
173
+
174
+