zabel-xyz / plsql-language

plsql-language for vscode
MIT License
78 stars 28 forks source link

Parsing problem, when function definition consists semicolon #86

Open true-hb opened 4 years ago

true-hb commented 4 years ago

Example:

FUNCTION test
( p1 VARCHAR2,
  p2 VARCHAR2 DEFAULT ';'
) RETURN VARCHAR2;

is shown like this in the sidebar grafik

JoeJord commented 3 years ago

Same issue if semicolon is in comment. Example:

FUNCTION test -- commit with semicolon (;) in it
  RETURN NUMBER IS
BEGIN
  null;
END;

grafik