File: hact.ace

package info (click to toggle)
gobo 3.3-6
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 30,488 kB
  • ctags: 27,045
  • sloc: yacc: 6,909; lex: 6,036; xml: 4,406; makefile: 370; sh: 217
file content (86 lines) | stat: -rw-r--r-- 1,335 bytes parent folder | download | duplicates (2)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
system

	eiffel_parser

root

	EIFFEL_PARSER: benchmark

default

	address_expression (no);
	array_optimization (no);
	assertion (no);
	check_vape (yes);
	console_application (yes);
	create_keyword_extension (yes);
	dead_code_removal (yes);
	optimize (yes);
	debug (no);
	dynamic_runtime_library (no);
	exception_trace (no);
	garbage_collector ("internal");
	inlining (no);
	inlining_size ("4");
	linux_fpu_double_precision (no);
	portable_code_generation (no);
	trace (no);
	warning_level ("default");

cluster

	eiffel_parser: "${GOBO}/example/parse/eiffel_parser";
	abstract pr_parse: "${GOBO}/library/parse"
		cluster
			error;
			fsm;
			generation;
			grammar;
			parser;
			skeleton;
			support;
			yacc;
		end;
	abstract lx_lexical: "${GOBO}/library/lexical"
		cluster
			automaton;
			error;
			generation;
			lex;
			regexp;
			scanner;
			skeleton;
			support;
		end;
	abstract ut_utility: "${GOBO}/library/utility"
		cluster
			error;
			formatter;
			command;
			support;
		end;
	abstract kl_kernel: "${GOBO}/library/kernel"
		cluster
			basic;
			elks;
			io;
			misc;
			unicode;
			support;
			abstract spec
				cluster
					hact;
				end;
		end;
	abstract rx_regexp: "${GOBO}/library/regexp"
		cluster
			interface;
			pcre;
			support;
		end;

component

	base: "${ISS_BASE}/spec/${PLATFORM}/component/base.cl";

end