top | up | prev | next

AndInstruction Class

Definition at line 118 of Instruction.hpp

Constructors

AndInstruction(Value* left_, Value* right_)

Member Functions

void Write(CodeFormatter& formatter, Function& function, Context& context)

Constructor Details

AndInstruction Constructor

cmsxi::AndInstruction::AndInstruction(Value * left_, Value * right_)

Definition at line 165 of Instruction.cpp :
165 : BinaryInstruction(left_right_)
166 {
167 }


Declaration at line 121 of Instruction.hpp


Member Function Details

Write Member Function

void cmsxi::AndInstruction::Write(CodeFormatter& formatter, Function & function, Context & context)

Definition at line 169 of Instruction.cpp :
170 {
171     WriteResult(formatterfunctioncontext);
172     formatter.Write(" = and ");
173     WriteArgs(formattercontext);
174     WriteMetadataRef(formatter);
175 }


Calls: cmsxi::BinaryInstruction::WriteArgs , cmsxi::Instruction::WriteMetadataRef , cmsxi::Instruction::WriteResult


top | up | prev | next