]> git.lizzy.rs Git - metalua.git/blob - metalua/compiler/parser/common.lua
Merge branch 'master' of ssh://git.eclipse.org/gitroot/koneki/org.eclipse.koneki...
[metalua.git] / metalua / compiler / parser / common.lua
1 --------------------------------------------------------------------------------
2 -- Copyright (c) 2006-2013 Fabien Fleutot and others.
3 --
4 -- All rights reserved.
5 --
6 -- This program and the accompanying materials are made available
7 -- under the terms of the Eclipse Public License v1.0 which
8 -- accompanies this distribution, and is available at
9 -- http://www.eclipse.org/legal/epl-v10.html
10 --
11 -- This program and the accompanying materials are also made available
12 -- under the terms of the MIT public license which accompanies this
13 -- distribution, and is available at http://www.lua.org/license.html
14 --
15 -- Contributors:
16 --     Fabien Fleutot - API and implementation
17 --
18 --------------------------------------------------------------------------------
19
20 -- Shared common parser table. It will be filled by parser.init(),
21 -- and every other module will be able to call its elements at runtime.
22 --
23 -- If the table was directly created in parser.init, a circular
24 -- dependency would be created: parser.init depends on other modules to fill the table,
25 -- so other modules can't simultaneously depend on it.
26
27 return { }