[go: up one dir, main page]

Menu

[r49]: / trunk / ec.ex  Maximize  Restore  History

Download this file

41 lines (31 with data), 718 Bytes

 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
-- (c) Copyright 2006 Rapid Deployment Software - See License.txt
--
-- Translator main file
without type_check
global constant TRUE = 1, FALSE = 0
global constant TRANSLATE = TRUE,
INTERPRET = FALSE,
BIND = FALSE
global constant EXTRA_CHECK = FALSE
global constant EMBEDDED = FALSE
-- standard Euphoria includes
include misc.e
include wildcard.e
-- front-end
include global.e
include reswords.e
include error.e
include keylist.e
include c_out.e
include symtab.e
include scanner.e
include emit.e
include parser.e
-- TRANSLATOR backend
include c_decl.e
include opnames.e
include compile.e
include traninit.e
include sequencef.e
-- main program:
include main.e