Highlight control flow keywords with a different color

This makes them easier to distinguish from other keywords.
This commit is contained in:
Hugo Locurcio 2021-04-08 16:12:22 +02:00
parent 758bccf364
commit e905e8f145
No known key found for this signature in database
GPG key ID: 39E8F8BE30B0A49C
20 changed files with 115 additions and 9 deletions

View file

@ -1289,6 +1289,10 @@ void NativeScriptLanguage::finish() {
void NativeScriptLanguage::get_reserved_words(List<String> *p_words) const {
}
bool NativeScriptLanguage::is_control_flow_keyword(String p_keyword) const {
return false;
}
void NativeScriptLanguage::get_comment_delimiters(List<String> *p_delimiters) const {
}