AjTalk.Tests.Compiler.ParserTests.CompileSameOperator C# (CSharp) 메소드

CompileSameOperator() 개인적인 메소드

private CompileSameOperator ( ) : void
리턴 void
        public void CompileSameOperator()
        {
            IClass cls = CompileClass(
                "Rectangle",
                new string[] { "x", "y" },
                new string[] { "== aRect ^x == aRect x ifTrue: [^y == aRect y] ifFalse: [^false]" });

            Assert.IsNotNull(cls);

            Assert.IsNotNull(cls.GetInstanceMethod("=="));
        }
ParserTests