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

CompileSimpleSendToSelf() private method

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