@@ -12,9 +12,11 @@ CTRL := 64;
12
12
ALNUMEXTRA := 128 ;
13
13
HEX := 256 ;
14
14
BINARY := 512 ;
15
+ EXTRA := 1024 ;
15
16
SPACE := WHITE | NEWLINE ;
16
17
ALPHA := UPPER | LOWER ;
17
18
ALNUM := ALPHA | DIGIT | ALNUMEXTRA ;
19
+ SPECIAL := DIGIT | SPACE | QUOTE | EXTRA ;
18
20
19
21
foreach c in "ABCDEFGHIJKLMNOPQRSTUVWXYZ" do setchartype (c ,UPPER );
20
22
foreach c in "abcdefghijklmnopqrstuvwxyz" do setchartype (c ,LOWER );
@@ -24,6 +26,7 @@ foreach c in "01" do setchartype(c,BINARY);
24
26
foreach c in " \t\r" do setchartype (c ,WHITE );
25
27
foreach c in "\n" do setchartype (c ,NEWLINE );
26
28
foreach c in "$'" do setchartype (c ,ALNUMEXTRA );
29
+ foreach c in ".#;," do setchartype (c ,EXTRA );
27
30
28
31
for c from 128 to 255 do setchartype (char (c ),ALPHA );
29
32
setchartype ('\"' ,QUOTE );
@@ -40,6 +43,7 @@ export iswhite (c:int ):bool := (chartype(c) & WHITE ) != 0;
40
43
export isspace (c :int ):bool := (chartype (c ) & SPACE ) != 0 ;
41
44
export isnewline (c :int ):bool := (chartype (c ) & NEWLINE ) != 0 ;
42
45
export isquote (c :int ):bool := (chartype (c ) & QUOTE ) != 0 ;
46
+ export isspecial (c :int ):bool := (chartype (c ) & SPECIAL ) != 0 ;
43
47
44
48
export isdigit (c :char ):bool := (chartype (c ) & DIGIT ) != 0 ;
45
49
export ishex (c :char ):bool := (chartype (c ) & HEX ) != 0 ;
@@ -50,6 +54,7 @@ export iswhite (c:char):bool := (chartype(c) & WHITE ) != 0;
50
54
export isspace (c :char ):bool := (chartype (c ) & SPACE ) != 0 ;
51
55
export isnewline (c :char ):bool := (chartype (c ) & NEWLINE ) != 0 ;
52
56
export isquote (c :char ):bool := (chartype (c ) & QUOTE ) != 0 ;
57
+ export isspecial (c :char ):bool := (chartype (c ) & SPECIAL ) != 0 ;
53
58
54
59
-- c = two bytes concatenated
55
60
export ismathoperator (c :int ):bool := (
@@ -76,6 +81,20 @@ export isvalidsymbol(s:string):bool := (
76
81
then return false);
77
82
true);
78
83
84
+ export isvalidkeyword (s :string ):bool := (
85
+ if length (s )== 0 then return false;
86
+ for i from 0 to length (s ) - 1 do (
87
+ if isspecial (s .i ) then return false;
88
+ if i < length (s )- 1 then (
89
+ if s .i == '-' && (s .(i + 1 )== '*' || s . (i + 1 )== '-' ) then return false;
90
+ if s .i == '*' && s . (i + 1 )== '-' then return false;
91
+ if i < length (s )- 2 then (
92
+ if s .i == '/' && s .(i + 1 )== '/' && s . (i + 2 )== '/' then return false;
93
+ ));
94
+ );
95
+ true);
96
+
97
+
79
98
-- Local Variables :
80
99
-- compile - command : "echo \"make: Entering directory \\`$M2BUILDDIR/Macaulay2/d'\" && make -C $M2BUILDDIR/Macaulay2/d "
81
100
-- End :
0 commit comments