Rhino.NodeTransformer.Transform C# (CSharp) Method

Transform() public method

public Transform ( ScriptNode tree ) : void
tree Rhino.Ast.ScriptNode
return void
		public void Transform(ScriptNode tree)
		{
			TransformCompilationUnit(tree);
			for (int i = 0; i != tree.GetFunctionCount(); ++i)
			{
				FunctionNode fn = tree.GetFunctionNode(i);
				Transform(fn);
			}
		}