]> code.delx.au - gnu-emacs/blob - test/etags/lua-src/test.lua
Merge branch 'emacs-25-merge'
[gnu-emacs] / test / etags / lua-src / test.lua
1 Rectangle = {}
2 function Rectangle.getPos ()
3 end
4
5 Circle = {}
6 function Circle.getPos ()
7 end
8
9 Cube = {}
10 function Cube.data.getFoo ()
11 end
12
13 Square = {}
14 function Square.something:Bar ()
15 end
16
17 -- Comment line
18 -- Indented comment line
19
20 test = {}
21
22 function test.me_22a(one, two)
23 print"me_22a"
24 end
25 local function test.me22b (one)
26 print"me_22b"
27 end
28
29
30 test.i_123 = function (x)
31 print"i_123"
32 end
33
34
35 test.me_12a(1,2)
36 test.i_123(1)