Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Entering more than three '/' consecutively in one line will cause problems #22

Open
Hakari-R opened this issue Oct 18, 2019 · 0 comments

Comments

@Hakari-R
Copy link

Hakari-R commented Oct 18, 2019

I use Verilog
Some IDE will automaticly create a header block use multiple '/'.
More than three / will affect the part after this

eg:
no problem:

begin  //
    begin
    end
end

begin  // / / / / / /
    begin
    end
end

begin/*////*/
    begin
    end
end

problem level 1:

begin  ////
    begin      //no colored
        begin  //no problem
        end
    end
end

begin/*/////*/
    begin      //no colored
        begin  //no problem
        end
    end
end

problem level 2:

begin  //////
    begin      //no colored
        begin  //no colored
        end
    end
end

begin/*///////*/
    begin        //no colored
        begin    //no colored
            
        end
    end
end

also :

//*
begin  //no colored
    begin  //no colored
        begin  //no colored
        end
    end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant