Hi everyone, i want to implement/contribute <https...
# language-proposals
v
Hi everyone, i want to implement/contribute https://discuss.kotlinlang.org/t/kotlin-to-support-package-protected-visibility Would be great if someone familiar with the kotlinc could give me pointers where to start, what potential issues i need to be aware of and test for... any reading material that could help me kickstart working on the compiler would be awesome. The goal is very simple, i want to have package visibility just like in java, nothing more for now (in the topic there are couple of interesting suggestions for improving over what java did)... i undestand that proper process for this is KEEP but i want to test it out use it myself + get some idea how to work with the compiler.
e
I’m not sure this is up-to-date, but it may help anyway: https://github.com/ahinchman1/Kotlin-Compiler-Crash-Course
v
thanks that is useful
g
i mean @vach I have to ask are you someone with a comp-sci background? Compilers are a kind of seminal software, with the seminal book on their design being [principals of compiler design](https://en.wikipedia.org/wiki/Principles_of_Compiler_Design), if you (or anyone reading this thread) isnt familiar, that book is the best place to start, but it is a lot of work.
v
yeah, you're right its a lot of work for a seemingly simple change, for now, I've run out of time to do this, maybe I will be back to it later on, I do a high-level understanding of compilers, and the code is not too bad. Will get back to it later.