xref: /Universal-ctags/Units/parser-lua.r/lua-function-in-nested-tables.d/input.lua (revision 9f9a097cbd242c3704047c37712d769aaba3c59f)
1a = {}
2a.b = {}
3a.b.c = function()
4      print "hello"
5end
6a.b.c()
7
8ax = {}
9ax.by = {}
10ax.by.cz = function()
11      print "hello"
12end
13ax.by.cz()
14