MAINTENANCE, SERVICE AND FAULT FINDING
25364 Issue 8 March 2018 4-49
1118 “}” Expected A “}” was expected during the syntax
check of the macro.
1119 “>” Expected A “>” was expected during the syntax
check of the macro.
1120 Constant number or
var. Expected
A constant or a variable was expected.
1121 “ Expected A “ (quote) was expected during the
syntax check of the macro.
1122 Illegal operator An unknown operator was found
The following operators are supported
+: Add two numbers (string
concatenation)
-: Subtract two numbers
*: Multiply two numbers
/: Division
&: Logic AND
|: Logic OR
^: Logic XOR
%: Modulo
1123 “then” Expected A “then” was expected during the
syntax check of the macro.
1124 Illegal operator for
strings
Operator does not support strings.
1125 Illegal operator for
float
An operator was used that does not
support floating point values.
1126 Illegal compare for
strings
Use single or double equal (= or ==) to
test if two strings are equal.
Use exclamation mark equal (!=) to test
if two strings are different.
1127 Can't compare string
and number
A string can’t be compared to a
number. If needed, first convert one
type to another type using a temporary
variable.
To compare d0 and s0, do one of the
following:
Compare as strings (using s1 as temp)
:s1 = d0
If s1==s0 then…
OR Compare as numbers (d1 as temp)
d1=s0If d1==d0 then…
Error No. Error Text Action