本文整理汇总了C++中TypeNode::setLocation方法的典型用法代码示例。如果您正苦于以下问题:C++ TypeNode::setLocation方法的具体用法?C++ TypeNode::setLocation怎么用?C++ TypeNode::setLocation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TypeNode
的用法示例。
在下文中一共展示了TypeNode::setLocation方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: handleStencilCollection
TypeNode* handleStencilCollection(TypeNode* type_expr)
{
EquelleType et = type_expr->type();
et.setStencil(true);
TypeNode* tn = new TypeNode(et);
tn->setLocation(type_expr->location());
delete type_expr;
return tn;
}
示例2: handleSequenceType
TypeNode* handleSequenceType(TypeNode* type_expr)
{
SequenceTypeNode* tn = new SequenceTypeNode(type_expr);
tn->setLocation(FileLocation(yylineno));
return tn;
#if 0
const EquelleType et = type_expr->type();
if (!et.isBasic()) {
yyerror("cannot create a Sequence of non-basic types.");
}
TypeNode* node = new TypeNode(EquelleType(et.basicType(), Sequence, et.gridMapping(), et.subsetOf()));
node->setLocation(FileLocation(yylineno));
return node;
#endif
}
示例3: handleArrayType
TypeNode* handleArrayType(const int array_size, TypeNode* type_expr)
{
ArrayTypeNode* tn = new ArrayTypeNode(type_expr, array_size);
tn->setLocation(FileLocation(yylineno));
return tn;
#if 0
EquelleType et = type_expr->type();
if (et.isArray()) {
yyerror("cannot create an Array of an Array.");
return type_expr;
} else {
et.setArraySize(array_size);
TypeNode* tn = new TypeNode(et);
tn->setLocation(type_expr->location());
delete type_expr;
return tn;
}
#endif
}