about summary refs log tree commit diff stats
path: root/src/luac.c
Commit message (Collapse)AuthorAgeFilesLines
* trying to make sense of how bindings are createdKartik K. Agaram2021-10-241-1/+1
| | | | | | lua_State contains these StkId fields (stack, stack_last, base, top) that expand to a pointer of a struct containing a Lua value and an int. Unclear how it's used, or how you build a stack out of it.
* new fork of Lua 5.1Kartik K. Agaram2021-10-221-0/+200
https://www.lua.org
- drop the :(scenario) DSL' href='/akkartik/mu/commit/018constant.cc?h=main&id=4a943d4ed313eff001504c2b5c472266e86a38af'>4a943d4e ^
dd660682 ^









dd660682 ^
01ce563d ^

4a943d4e ^










dd660682 ^









01ce563d ^


92a3d082 ^


4a943d4e ^










01ce563d ^









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