LanguageDev / Yoakke

A collection of libraries for implementing compilers in .NET.
https://languagedev.github.io/Yoakke/
Apache License 2.0
141 stars 8 forks source link

Source generators does not account for visibility of lexers. #156

Open kant2002 opened 11 months ago

kant2002 commented 11 months ago
internal enum ТокенГакст {}
[Lexer(typeof(ТокенГакст))]
public partial class ЛексерГакст { }

produce

partial class ЛексерГакст { 
   public Token<GAXT.NET.ТокенГакст> Next() ..
}

and that's compile time error, since ТокенГакст is internal, and thus cannot be public method.