Skip to content

Instantly share code, notes, and snippets.

@AlecKazakova
Created December 29, 2018 21:25
Show Gist options
  • Save AlecKazakova/8dea17c7bbb4de045dd0fb57e45eefc1 to your computer and use it in GitHub Desktop.
Save AlecKazakova/8dea17c7bbb4de045dd0fb57e45eefc1 to your computer and use it in GitHub Desktop.
class SqlDelightParserDefinition: SqliteParserDefinition() {
init {
setParserOverride(object : CustomSqliteParser() {
override fun columnDef(builder: PsiBuilder, level: Int, column_def: Parser): Boolean {
return SqlDelightParser.column_def(builder, level)
}
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment