GetGlobalName() public method

public GetGlobalName ( int ng ) : string
ng int
return string
Example #1
0
        public void CompileGlobal()
        {
            Block block;

            block = new Block();
            block.CompileGetConstant(10);
            block.CompileSet("Global");

            Assert.AreEqual("Global", block.GetGlobalName(0));
        }