remove bootstrap + Pattern.patternify
This commit is contained in:
parent
1890e65b75
commit
b9781915a4
7 changed files with 4 additions and 106 deletions
|
|
@ -225,9 +225,8 @@ function isPatternArg(parents) {
|
|||
function hasModifierCall(parent) {
|
||||
// TODO: modifiers are more than composables, for example every is not composable but should be seen as modifier..
|
||||
// need all prototypes of Pattern
|
||||
return (
|
||||
parent?.type === 'StaticMemberExpression' && Object.keys(Pattern.prototype.composable).includes(parent.property)
|
||||
);
|
||||
return parent?.type === 'StaticMemberExpression';
|
||||
// && Object.keys(Pattern.prototype.composable).includes(parent.property)
|
||||
}
|
||||
const factories = Object.keys(Pattern.prototype.factories).concat(['mini']);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue