AjTalk.Tests.Compilers.Javascript.CompilerTests.CompilePrimitiveInMethod C# (CSharp) Method

CompilePrimitiveInMethod() private method

private CompilePrimitiveInMethod ( ) : void
return void
        public void CompilePrimitiveInMethod()
        {
            MethodModel method = ParseMethod("= b <primitive: 60> ^self value equals: b");
            this.compiler.CompileMethod(method);
            this.writer.Close();
            string output = this.writer.ToString();
            Assert.IsTrue(ContainsLine(output, "var _primitive = primitives.primitive60(self, b);"));
            Assert.IsTrue(ContainsLine(output, "if (_primitive) return _primitive.value;"));
        }