Skip to content
This repository was archived by the owner on May 15, 2023. It is now read-only.

Commit

Permalink
LixyGenericTokenType should not be a data class
Browse files Browse the repository at this point in the history
  • Loading branch information
utybo committed May 4, 2020
1 parent 0dc3c44 commit 9055cff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commonMain/kotlin/guru/zoroark/lixy/LixyTokenType.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ interface LixyTokenType
*
* @property name A name for this token type, useful for debugging.
*/
data class LixyGenericTokenType(val name: String) : LixyTokenType
class LixyGenericTokenType(val name: String) : LixyTokenType

/**
* Creates a new, distinct token type and returns it. The returned token type is
Expand Down

0 comments on commit 9055cff

Please sign in to comment.