usagi-coffee / tree-sitter-abl

OpenEdge ABL grammar for tree-sitter
MIT License
5 stars 1 forks source link

IMPORTANT: Keywords TABLE and EXTENT have error in method parameter (Similar to #49, #50) #60

Closed eglekaz closed 3 days ago

eglekaz commented 2 weeks ago

TABLE/TABLE-HANDLE: In Method Call is parsed now, but the same issue is still in method definition. Example:

method public int csvFileToTempTable(pcFilePath as char, pcSeparator as char,
                                        output table-handle phOutputTable):

EXTENT: Variable and property definitions with EXTENT are parsed correctly, but the issue still remains in method definition. Example:

method private void processLine(cLineNumber as int, cLineArray as char extent):