An IFileNode is the root of the AST (abstract syntax tree) produced for a file.
IFileNode
If the file includes other files, a single IFileNode is produced.
The shape of this node is
IFileNode IASNode <-- getChild(0) IASNode <-- getChild(1) ...
899091929394959697
@Override @Test public void testPackageQualified_ClassBody() { IFileNode node = compileAS("package foo.bar.baz {public class A{public function A(){}}}"); asBlockWalker.visitFile(node); //assertOut(""); }