AjTalk.Tests.Compiler.ParserTests.CompileSimpleSendToSelf C# (CSharp) Méthode

CompileSimpleSendToSelf() private méthode

private CompileSimpleSendToSelf ( ) : void
Résultat void
        public void CompileSimpleSendToSelf()
        {
            Parser compiler = new Parser("self invokeWith: 10");
            Block block = compiler.CompileBlock();
            Assert.IsNotNull(block);
            Assert.AreEqual(2, block.NoConstants);
            Assert.AreEqual(0, block.NoLocals);
            Assert.IsNotNull(block.ByteCodes);
            Assert.AreEqual(6, block.ByteCodes.Length);
            Assert.AreEqual(ByteCode.GetSelf, (ByteCode)block.ByteCodes[0]);
            Assert.AreEqual(0, block.Arity);
        }
ParserTests