Yolol icon indicating copy to clipboard operation
Yolol copied to clipboard

Implement AST Equality Test Coverage

Open martindevans opened this issue 4 years ago • 0 comments

AST equality allows you to test where two syntax trees are the same with:

var a = TestExecutor.Parse("program");
var b = TestExecutor.Parse("program");

Assert.isTrue(a.Equals(b));

This needs testing for every ast sub type.

martindevans avatar Oct 23 '19 18:10 martindevans