Skip to content

Commit

Permalink
Remove unused field
Browse files Browse the repository at this point in the history
  • Loading branch information
jfmengels committed Sep 13, 2024
1 parent 1787a7f commit 54fb4b6
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/Elm/Parser/Expression.elm
Original file line number Diff line number Diff line change
Expand Up @@ -1425,7 +1425,6 @@ applyExtensionRight (ExtendRightByOperation operation) ((Node leftRange _) as le

type alias InfixOperatorInfo =
{ leftPrecedence : Int
, symbol : String
, extensionRight : Parser (WithComments ExtensionRight)
}

Expand All @@ -1438,7 +1437,6 @@ errUnknownInfixOperator =
infixLeft : Int -> String -> InfixOperatorInfo
infixLeft leftPrecedence symbol =
{ leftPrecedence = leftPrecedence
, symbol = symbol
, extensionRight =
ParserFast.map2
(\commentsBeforeFirst first ->
Expand Down Expand Up @@ -1469,7 +1467,6 @@ infixLeft leftPrecedence symbol =
infixNonAssociative : Int -> String -> InfixOperatorInfo
infixNonAssociative leftPrecedence symbol =
{ leftPrecedence = leftPrecedence
, symbol = symbol
, extensionRight =
ParserFast.map2
(\commentsBefore right ->
Expand Down Expand Up @@ -1510,7 +1507,6 @@ problemCannotMixNonAssociativeInfixOperators =
infixRight : Int -> String -> InfixOperatorInfo
infixRight leftPrecedence symbol =
{ leftPrecedence = leftPrecedence
, symbol = symbol
, extensionRight =
ParserFast.map2
(\commentsBeforeFirst first ->
Expand Down

0 comments on commit 54fb4b6

Please sign in to comment.