Exemplo n.º 1
0
        private static void CompileSomeConstructor(FunctionCompiler compiler, FunctionalNode someConstructorNode)
        {
            VariableReference input  = someConstructorNode.InputTerminals.ElementAt(0).GetTrueVariable(),
                              output = someConstructorNode.OutputTerminals.ElementAt(0).GetTrueVariable();

            compiler.CopyValueToSomeValue(input, output);
        }