AjTalk.Tests.Compiler.ParserTests.CompileSameOperator C# (CSharp) Method

CompileSameOperator() private method

private CompileSameOperator ( ) : void
return 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