Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions src/Elm/Parser/Expression.elm
Original file line number Diff line number Diff line change
Expand Up @@ -1415,7 +1415,6 @@ applyExtensionRight (ExtendRightByOperation operation) ((Node leftRange _) as le

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

Expand All @@ -1428,7 +1427,6 @@ errUnknownInfixOperator =
infixLeft : Int -> String -> InfixOperatorInfo
infixLeft leftPrecedence symbol =
{ leftPrecedence = leftPrecedence
, symbol = symbol
, extensionRight =
ParserFast.map2
(\commentsBeforeFirst first ->
Expand Down Expand Up @@ -1460,7 +1458,6 @@ infixLeft leftPrecedence symbol =
infixNonAssociative : Int -> String -> InfixOperatorInfo
infixNonAssociative leftPrecedence symbol =
{ leftPrecedence = leftPrecedence
, symbol = symbol
, extensionRight =
ParserFast.map2
(\commentsBefore right ->
Expand Down Expand Up @@ -1502,7 +1499,6 @@ problemCannotMixNonAssociativeInfixOperators =
infixRight : Int -> String -> InfixOperatorInfo
infixRight leftPrecedence symbol =
{ leftPrecedence = leftPrecedence
, symbol = symbol
, extensionRight =
ParserFast.map2
(\commentsBeforeFirst first ->
Expand Down