Skip to content

Commit 8df20ab

Browse files
committed
add isvalidkeyword
1 parent 1af84da commit 8df20ab

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

M2/Macaulay2/d/actors5.d

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export makeKeywordFun(e:Expr):Expr := (
2828
is b1:Boolean do
2929
when seq.3
3030
is b2:Boolean do (
31+
if !isvalidkeyword(s.v) then buildErrorPacket("invalid keyword") else (
3132
u:=errorunary;
3233
t:=errorbinary;
3334
prec:=toInt(p);
@@ -42,7 +43,7 @@ export makeKeywordFun(e:Expr):Expr := (
4243
else (
4344
install(s.v,w); -- TODO check whether install is really needed (for mathematical symbols as opposed to words)
4445
Expr(makeKeyword(w)))
45-
)
46+
))
4647
else WrongArg(4,"a boolean")
4748
else WrongArg(3,"a boolean")
4849
else WrongArg(2,"an integer")

M2/Macaulay2/d/ctype.d

+19
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ CTRL := 64;
1212
ALNUMEXTRA := 128;
1313
HEX := 256;
1414
BINARY := 512;
15+
EXTRA := 1024;
1516
SPACE := WHITE | NEWLINE;
1617
ALPHA := UPPER | LOWER;
1718
ALNUM := ALPHA | DIGIT | ALNUMEXTRA;
19+
SPECIAL := DIGIT | SPACE | QUOTE | EXTRA;
1820

1921
foreach c in "ABCDEFGHIJKLMNOPQRSTUVWXYZ" do setchartype(c,UPPER);
2022
foreach c in "abcdefghijklmnopqrstuvwxyz" do setchartype(c,LOWER);
@@ -24,6 +26,7 @@ foreach c in "01" do setchartype(c,BINARY);
2426
foreach c in " \t\r" do setchartype(c,WHITE);
2527
foreach c in "\n" do setchartype(c,NEWLINE);
2628
foreach c in "$'" do setchartype(c,ALNUMEXTRA);
29+
foreach c in ".#;," do setchartype(c,EXTRA);
2730

2831
for c from 128 to 255 do setchartype(char(c),ALPHA);
2932
setchartype('\"',QUOTE);
@@ -40,6 +43,7 @@ export iswhite (c:int ):bool := (chartype(c) & WHITE ) != 0;
4043
export isspace (c:int ):bool := (chartype(c) & SPACE ) != 0;
4144
export isnewline (c:int ):bool := (chartype(c) & NEWLINE ) != 0;
4245
export isquote (c:int ):bool := (chartype(c) & QUOTE ) != 0;
46+
export isspecial (c:int ):bool := (chartype(c) & SPECIAL ) != 0;
4347

4448
export isdigit (c:char):bool := (chartype(c) & DIGIT ) != 0;
4549
export ishex (c:char):bool := (chartype(c) & HEX ) != 0;
@@ -50,6 +54,7 @@ export iswhite (c:char):bool := (chartype(c) & WHITE ) != 0;
5054
export isspace (c:char):bool := (chartype(c) & SPACE ) != 0;
5155
export isnewline (c:char):bool := (chartype(c) & NEWLINE ) != 0;
5256
export isquote (c:char):bool := (chartype(c) & QUOTE ) != 0;
57+
export isspecial (c:char):bool := (chartype(c) & SPECIAL ) != 0;
5358

5459
-- c = two bytes concatenated
5560
export ismathoperator(c:int):bool := (
@@ -76,6 +81,20 @@ export isvalidsymbol(s:string):bool := (
7681
then return false);
7782
true);
7883

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+
7998
-- Local Variables:
8099
-- compile-command: "echo \"make: Entering directory \\`$M2BUILDDIR/Macaulay2/d'\" && make -C $M2BUILDDIR/Macaulay2/d "
81100
-- End:

0 commit comments

Comments
 (0)