forked from OSchip/llvm-project
[flang] More renaming
Original-commit: flang-compiler/f18@9ef9ef4479 Reviewed-on: https://github.com/flang-compiler/f18/pull/170 Tree-same-pre-rewrite: false
This commit is contained in:
parent
facd02405f
commit
b3a87d4e27
|
@ -33,22 +33,22 @@ using IndexList = std::vector<std::pair<parser::CharBlock, parser::CharBlock>>;
|
||||||
// because the parse tree does not actually have the scopes required.
|
// because the parse tree does not actually have the scopes required.
|
||||||
using ProxyForScope = unsigned;
|
using ProxyForScope = unsigned;
|
||||||
struct LabeledStatementInfoTuplePOD {
|
struct LabeledStatementInfoTuplePOD {
|
||||||
LabeledStatementInfoTuplePOD(const ProxyForScope &_proxyForScope,
|
LabeledStatementInfoTuplePOD(const ProxyForScope &proxyForScope,
|
||||||
const parser::CharBlock &_parserCharBlock,
|
const parser::CharBlock &parserCharBlock,
|
||||||
const LabeledStmtClassificationSet &_labeledStmtClassificationSet)
|
const LabeledStmtClassificationSet &labeledStmtClassificationSet)
|
||||||
: proxyForScope{_proxyForScope}, parserCharBlock{_parserCharBlock},
|
: proxyForScope{proxyForScope}, parserCharBlock{parserCharBlock},
|
||||||
labeledStmtClassificationSet{_labeledStmtClassificationSet} {}
|
labeledStmtClassificationSet{labeledStmtClassificationSet} {}
|
||||||
ProxyForScope proxyForScope;
|
ProxyForScope proxyForScope;
|
||||||
parser::CharBlock parserCharBlock;
|
parser::CharBlock parserCharBlock;
|
||||||
LabeledStmtClassificationSet labeledStmtClassificationSet;
|
LabeledStmtClassificationSet labeledStmtClassificationSet;
|
||||||
};
|
};
|
||||||
using TargetStmtMap = std::map<parser::Label, LabeledStatementInfoTuplePOD>;
|
using TargetStmtMap = std::map<parser::Label, LabeledStatementInfoTuplePOD>;
|
||||||
struct SourceStatementInfoTuplePOD {
|
struct SourceStatementInfoTuplePOD {
|
||||||
SourceStatementInfoTuplePOD(const parser::Label &_parserLabel,
|
SourceStatementInfoTuplePOD(const parser::Label &parserLabel,
|
||||||
const ProxyForScope &_proxyForScope,
|
const ProxyForScope &proxyForScope,
|
||||||
const parser::CharBlock &_parserCharBlock)
|
const parser::CharBlock &parserCharBlock)
|
||||||
: parserLabel{_parserLabel}, proxyForScope{_proxyForScope},
|
: parserLabel{parserLabel}, proxyForScope{proxyForScope},
|
||||||
parserCharBlock{_parserCharBlock} {}
|
parserCharBlock{parserCharBlock} {}
|
||||||
parser::Label parserLabel;
|
parser::Label parserLabel;
|
||||||
ProxyForScope proxyForScope;
|
ProxyForScope proxyForScope;
|
||||||
parser::CharBlock parserCharBlock;
|
parser::CharBlock parserCharBlock;
|
||||||
|
|
Loading…
Reference in New Issue