
it.only('tracks code flow between conditional compile blocks', () => {
program.setFile('source/main.brs', `
sub main()
#if true
text1 = "a"
#else
text1 = "b"
#end if
print text1
end sub
`);
program.validate();
expect(program.getDiagnostics()).to.eql([]);
});