ruby: handle singleton method including ?!= in its name(sf.bug:364)
[geany-mirror.git] / tests / ctags / simple.lua
blob095cc3d4666ae17a85560eb57cd5148f16d75b27
1 -- Comment line
2 -- Indented comment line
3 test = {}
5 function test.me_12a(one, two)
6 print"me_12a"
7 end
10 test.i_123 = function (x)
11 print"i_123"
12 end
15 test.me_12a(1,2)
16 test.i_123(1)