UNPKG
meld-spec
Version:
latest (0.4.2)
0.4.2
0.4.1
0.4.0
0.3.11
0.3.10
0.3.9
0.3.8
0.3.7
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.0
Specification for the Meld scripting language
github.com/adamavenir/meld-spec
meld-spec
/
dist
/
types
/
utils
/
compare.d.ts
6 lines
(5 loc)
•
185 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
MeldNode
}
from
'../types/nodes'
;
/** * Compare two AST nodes for structural equality */
export
declare
function
compareNodes
(
actual
:
MeldNode
,
expected
:
MeldNode
):
boolean
;