コード例 #1
0
void AstNodeArrayDType::dumpSmall(ostream& str) {
    this->AstNodeDType::dumpSmall(str);
    if (castPackArrayDType()) str<<"p"; else str<<"u";
    str<<declRange();
}
コード例 #2
0
ファイル: V3AstNodes.cpp プロジェクト: grg/verilator
void AstNodeArrayDType::dumpSmall(ostream& str) {
    this->AstNodeDType::dumpSmall(str);
    if (castPackArrayDType()) str<<"p"; else str<<"u";
    str<<"["<<declRange().left()<<":"<<declRange().right()<<"]";
}