Handle RegExpLiteral include/exclude

This commit is contained in:
Michael Shilman 2019-12-09 17:30:42 +08:00
parent 971809db71
commit fc01ec35b8

View File

@ -60,6 +60,7 @@ function getDescriptor(metaDeclaration, propertyName) {
case 'ArrayExpression':
return property.value.elements.map(t => t.value);
case 'Literal':
case 'RegExpLiteral':
return property.value.value;
default:
throw new Error(`Unexpected descriptor: ${type}`);