lrama icon indicating copy to clipboard operation
lrama copied to clipboard

Add support for error handling for missing comment end

Open ydah opened this issue 3 months ago • 1 comments

Example:

%{
// Prologue
%}
%%
foo: "baz"
   ;
%%
/* This is a comment

Bison:

tmp/missing.y:8.1-9.0: error: missing ‘*/’ at end of file
    8 | /* This is a comment
      | ^~~~~~~~~~~~~~~~~~~~

Lrama:

# No error

ydah avatar Sep 02 '25 12:09 ydah

I understand the intention however I'm wondering where is the best place to put the logic...

yui-knk avatar Sep 09 '25 10:09 yui-knk