mirror of
https://github.com/google/go-jsonnet.git
synced 2025-08-08 07:17:12 +02:00
* Extract some test utilities to a separate package. * Rename some test utilities. * Internally expose DirectChildren. * Add LocationRange to some non-expr AST parts, such as local binds, parameters and object fields. * Add end-of-file-reached testcases.
10 lines
317 B
Python
10 lines
317 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["test_utils.go"],
|
|
importpath = "github.com/google/go-jsonnet/internal/testutils",
|
|
visibility = ["//:__subpackages__"],
|
|
deps = ["@com_github_sergi_go_diff//diffmatchpatch:go_default_library"],
|
|
)
|