TypeCobol is an Incremental Cobol parser for IBM Enterprise Cobol 6 for zOS syntax. TypeCobol is also an extension of Cobol 85 language which can then be converted to Cobol85.
Other
78
stars
26
forks
source link
WI #2599 Fix SourceText property for missing tokens #2663
This is a simple fix for the index out of range error happening when evaluating the SourceText property.
As MissingToken instances don't refer to actual tokens found in text lines, the Substring operation to compute source text will always fail for them.
Fixes #2599.
This is a simple fix for the index out of range error happening when evaluating the
SourceText
property. AsMissingToken
instances don't refer to actual tokens found in text lines, theSubstring
operation to compute source text will always fail for them.