AjTalk.Tests.Compiler.VmCompilerTests.CompileSameOperator C# (CSharp) Метод

CompileSameOperator() приватный Метод

private CompileSameOperator ( ) : void
Результат void
        public void CompileSameOperator()
        {
            IClass cls = this.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("=="));
        }