зеркало из https://github.com/mozilla/gecko-dev.git
Bug 681634 - Get m-c to build with static checking; fix verification scripts. r=taras
This commit is contained in:
Родитель
60b24c98f0
Коммит
51c1d51f63
|
@ -60,7 +60,7 @@ function process_tree_decl(d)
|
|||
{
|
||||
d = dehydra_convert(d);
|
||||
|
||||
if (d.name && frameIIDRE(d.name)) {
|
||||
if (d.name && frameIIDRE.exec(d.name)) {
|
||||
haveIDs[d.memberOf.name] = 1;
|
||||
}
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ function process_tree_decl(d)
|
|||
function process_cp_pre_genericize(d)
|
||||
{
|
||||
d = dehydra_convert(d);
|
||||
if (queryFrameRE(d.name) && d.template === undefined) {
|
||||
if (queryFrameRE.exec(d.name) && d.template === undefined) {
|
||||
let templtype = d.type.type.type;
|
||||
while (templtype.typedef !== undefined)
|
||||
templtype = templtype.typedef;
|
||||
|
|
Загрузка…
Ссылка в новой задаче