Skip to content

Commit

Permalink
Avoid computing symbol encoding when not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
facundominguez committed Sep 18, 2021
1 parent 350e244 commit a1d6eab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Language/Fixpoint/Types/Names.hs
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ type SafeText = T.Text

data Symbol
= S { _symbolId :: !Id
, symbolRaw :: !T.Text
, symbolEncoded :: !T.Text
, symbolRaw :: T.Text
, symbolEncoded :: T.Text
} deriving (Data, Typeable, Generic)

instance Eq Symbol where
Expand Down

0 comments on commit a1d6eab

Please sign in to comment.