-
Notifications
You must be signed in to change notification settings - Fork 533
Closed
Labels
Description
There are some syntax errors in the current Generator.Tests library that I don't know how to fix myself.
First in TestPasses.cs you have this:
[SetUp]
public void Setup()
{
ParseLibrary("Passes.h");
passBuilder = new PassBuilder(library); // < ERROR! PassBuilder needs a Driver now!
}
Then in TestCLITypePrinter.cs:
[TestFixtureSetUp]
public void Init()
{
ParseLibrary("CLITypes.h");
printer = new CLITypePrinter(database, library); // < ERROR! needs a Driver and a CLITypePrinterContext!
}