10 {
12
13
14
15
16
17
18 $this->nocase = "1";
19 $this->notrim = "0";
20 $this->perl = "0";
21
22
23
24 $this->colours = array("blue", "purple", "brown", "blue", "purple", "gray", "brown");
25 $this->quotecolour = "blue";
26 $this->blockcommentcolour = "green";
27 $this->linecommentcolour = "green";
28
29
30
31 $this->indent = array();
32 $this->unindent = array();
33
34
35
36 $this->stringchars = array();
37 $this->delimiters = array("~", "!", "@", "%", "^", "&", "*", "(", ")", "+", "=", "|", "\\", "/", "{", "}", "[", "]", ":", ";", "\"", "'", "<", ">", " ", ",", " ", ".", "?");
38 $this->escchar = "";
39
40
41
42 $this->linecommenton = array("PPR");
43 $this->blockcommenton = array("$");
44 $this->blockcommentoff = array("");
45
46
47
48 $this->keywords = array(
49 "CALL" => "1",
50 "CHOOSE" => "1",
51 "GPOS" => "1",
52 "IDENT" => "1",
53 "LOAD" => "1",
54 "MACRO" => "1",
55 "PARAM" => "1",
56 "TERMAC" => "1",
57 "TEXT" => "1",
58 "RAPID" => "2",
59 "AUXFUN" => "4",
60 "INSERT" => "4",
61 "IF" => "4",
62 "JUMP" => "4",
63 "MODE" => "4",
64 "PLABEL" => "4",
65 "POSTN" => "4",
66 "PREFUN" => "4",
67 "COPY" => "5",
68 "INDEX" => "5",
69 "OPSKIP" => "5",
70 "TRACUT" => "5",
71 "TRANS" => "5",
72 "APPEND" => "6",
73 "CREATE" => "6",
74 "DELIM" => "6",
75 "FILE" => "6",
76 "FETCH" => "6",
77 "FPRINT" => "6",
78 "FTERM" => "6",
79 "READ" => "6",
80 "RESET" => "6",
81 "WRITE" => "6",
82 "LOADTL" => "7",
83 "COOLNT" => "8",
84 "SPINDL" => "8");
85
86
87
88
89
90
91
92
93 $this->linkscripts = array(
94 "1" => "donothing",
95 "2" => "donothing",
96 "4" => "donothing",
97 "5" => "donothing",
98 "6" => "donothing",
99 "7" => "donothing",
100 "8" => "donothing");
101 }