public void GetCodeWordCount()
 {
     ICodeGeneratorTest.CheckGetCodeWordCount(m_target, 1, "HexaDecimalConstant => 1 語生成する");
 }
예제 #2
0
 public void GetCodeWordCount()
 {
     ICodeGeneratorTest.CheckGetCodeWordCount(m_target, 1, "Literal => 1 語生成する");
 }
예제 #3
0
 public void GetCodeWordCount()
 {
     ICodeGeneratorTest.CheckGetCodeWordCount(m_target, 1, "AddressConstant => 1 語生成する");
 }
예제 #4
0
        private void CheckGetCodeWordCount(String value, Int32 expected, String message)
        {
            StringConstant target = new StringConstant(value);

            ICodeGeneratorTest.CheckGetCodeWordCount(target, expected, message);
        }
예제 #5
0
 private void CheckGetCodeWordCount(MachineInstructionOperand target, Int32 expected, String message)
 {
     ICodeGeneratorTest.CheckGetCodeWordCount(target, expected, message);
 }
 public void GetCodeWordCount()
 {
     ICodeGeneratorTest.CheckGetCodeWordCount(
         m_constants, 1 + 1 + 1 + StringValue.Length, "それぞれの Constant の語数の合計");
 }