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

CompileBlockWithDot() private method

private CompileBlockWithDot ( ) : void
return void
        public void CompileBlockWithDot()
        {
            Parser compiler = new Parser("[. 1. 2]");
            Block block = compiler.CompileBlock();
            Assert.IsNotNull(block);
        }
ParserTests