apoch / epoch-language

Home of the Epoch Programming Language Project
Other
72 stars 3 forks source link

Templated types do not get syntax highlighted correctly #188

Closed apoch closed 7 years ago

apoch commented 7 years ago

The following code does not highlight list correctly in VS2015:

type listnode<type T> : list<T> | nothing

structure list<type T> :
    T ref value,
    listnode<T> next

Note that listnode is highlighted as a type, but list is not.

apoch commented 7 years ago

This has been fixed incidentally with another parser change.