tpParser/shared/src/test/programs/erroneous/functions_01.txt contains
1 # 1
2 # TYPO
3 def some_f(x);
4 print(x)
5
6 some_f(12)
With that code TPyParser.checkSyntax().msg reads
There seems to be a typo here: ':' should probably be ';'.
which should be just the other way around.
tpParser/shared/src/test/programs/erroneous/functions_01.txtcontainsWith that code
TPyParser.checkSyntax().msgreadsThere seems to be a typo here: ':' should probably be ';'.which should be just the other way around.