Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion ast/antlrhandler/error_listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/EarthBuild/earthbuild/ast/parser"
"github.com/EarthBuild/earthbuild/util/hint"
"github.com/antlr/antlr4/runtime/Go/antlr/v4"
"github.com/antlr4-go/antlr/v4"
"github.com/pkg/errors"
)

Expand Down
2 changes: 1 addition & 1 deletion ast/antlrhandler/error_strategy.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package antlrhandler
import (
"fmt"

"github.com/antlr/antlr4/runtime/Go/antlr/v4"
"github.com/antlr4-go/antlr/v4"
"github.com/pkg/errors"
)

Expand Down
2 changes: 1 addition & 1 deletion ast/ast.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/EarthBuild/earthbuild/ast/parser"
"github.com/EarthBuild/earthbuild/ast/spec"
"github.com/EarthBuild/earthbuild/util/hint"
"github.com/antlr/antlr4/runtime/Go/antlr/v4"
"github.com/antlr4-go/antlr/v4"
"github.com/pkg/errors"
)

Expand Down
2 changes: 1 addition & 1 deletion ast/lexer.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"

"github.com/EarthBuild/earthbuild/ast/parser"
"github.com/antlr/antlr4/runtime/Go/antlr/v4"
"github.com/antlr4-go/antlr/v4"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion ast/listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"github.com/EarthBuild/earthbuild/ast/parser"
"github.com/EarthBuild/earthbuild/ast/spec"
"github.com/antlr/antlr4/runtime/Go/antlr/v4"
"github.com/antlr4-go/antlr/v4"
"github.com/pkg/errors"
)

Expand Down
2 changes: 1 addition & 1 deletion ast/parser/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apk add --no-cache ca-certificates curl openssl go && \
# Install antlr.
WORKDIR /usr/local/lib
# renovate: datasource=github-releases packageName=antlr/antlr4
ARG --global ANTLR_VERSION=4.12.0
ARG --global ANTLR_VERSION=4.13.1
RUN echo curl -O https://www.antlr.org/download/antlr-${ANTLR_VERSION}-complete.jar
RUN curl -O https://www.antlr.org/download/antlr-${ANTLR_VERSION}-complete.jar
WORKDIR /earthly
Expand Down
49 changes: 24 additions & 25 deletions ast/parser/earth_lexer.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading