Skip to content

Commit 1f87c6c

Browse files
Merge branch 'master' into mandatory_arguments
2 parents 5fb7f94 + 453466e commit 1f87c6c

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

.github/workflows/Downstream.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- uses: actions/checkout@v4
26-
- uses: julia-actions/setup-julia@v1
26+
- uses: julia-actions/setup-julia@v2
2727
with:
2828
version: ${{ matrix.julia-version }}
2929
arch: x64

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- x64
2525
steps:
2626
- uses: actions/checkout@v4
27-
- uses: julia-actions/setup-julia@v1
27+
- uses: julia-actions/setup-julia@v2
2828
with:
2929
version: ${{ matrix.version }}
3030
arch: ${{ matrix.arch }}

src/TermInterface.jl

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,7 @@ export metadata
105105
106106
Returns a `expr` with metadata `md` attached to it.
107107
"""
108-
function metadata(x, data)
109-
error("Setting metadata on $x is not implemented")
110-
end
108+
function metadata end
111109

112110

113111
"""
@@ -130,9 +128,7 @@ Packages providing expression types _must_ implement this method for each expres
130128
Giving `nothing` for `type` or `metadata` results in a default being selected.
131129
"""
132130

133-
function maketerm(T::Type, head, children, type, metadata)
134-
error("maketerm for $T is not implemented")
135-
end
131+
function maketerm end
136132
export maketerm
137133

138134
include("utils.jl")

0 commit comments

Comments
 (0)