コード例 #1
0
ファイル: Compiler.cs プロジェクト: robotii/sophielang
        private static void string_(Compiler c, bool allowAssignment)
        {
            int constant = c.StringConstant();

            // Compile the code to load the constant.
            c.EmitConstant(constant);
        }