Code editor with autocomplete
- by Andrey
I need to create a code editor for my own simple language:
className.MethodName(parameterName = 2, ... )
I've created the appropriate grammar and autogenerate parser using ANTLR tool. Now I would like to have an autocomplete for class, method, variables and parameter names. This list should be context dependent, f.e. for "class." it should…