nishtahir / language-kotlin

Textmate language grammar for the Kotlin programming language
Apache License 2.0
12 stars 6 forks source link

Incorrect parsing stoppage at class/interface on extending/implementing. #40

Closed Animeshz closed 3 years ago

Animeshz commented 3 years ago

Seems like there's incorrect ending pattern for extending/implementing the class/interface.

public interface TestI<out E> : Collection<E> {
public class TestC<out E> : Collection<E> {
public object TestO<out E> : Collection<E> {