File tree Expand file tree Collapse file tree 1 file changed +8
-12
lines changed Expand file tree Collapse file tree 1 file changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -96,25 +96,21 @@ tap.test(
96
96
'utf8'
97
97
) ;
98
98
atomPattern . extendedTemplate = atomPattern . template ;
99
- atomPattern . stylePartials = atomPattern . findPartialsWithStyleModifiers (
100
- atomPattern
101
- ) ;
102
- atomPattern . parameteredPartials = atomPattern . findPartialsWithPatternParameters (
103
- atomPattern
104
- ) ;
99
+ atomPattern . stylePartials =
100
+ atomPattern . findPartialsWithStyleModifiers ( atomPattern ) ;
101
+ atomPattern . parameteredPartials =
102
+ atomPattern . findPartialsWithPatternParameters ( atomPattern ) ;
105
103
106
104
var pseudoPattern = new Pattern ( 'test/pseudomodifier.mustache' ) ;
107
105
pseudoPattern . template = fs . readFileSync (
108
106
patterns_dir + 'test/pseudomodifier.mustache' ,
109
107
'utf8'
110
108
) ;
111
109
pseudoPattern . extendedTemplate = atomPattern . template ;
112
- pseudoPattern . stylePartials = pseudoPattern . findPartialsWithStyleModifiers (
113
- pseudoPattern
114
- ) ;
115
- pseudoPattern . parameteredPartials = pseudoPattern . findPartialsWithPatternParameters (
116
- pseudoPattern
117
- ) ;
110
+ pseudoPattern . stylePartials =
111
+ pseudoPattern . findPartialsWithStyleModifiers ( pseudoPattern ) ;
112
+ pseudoPattern . parameteredPartials =
113
+ pseudoPattern . findPartialsWithPatternParameters ( pseudoPattern ) ;
118
114
119
115
addPattern ( atomPattern , pl ) ;
120
116
addPattern ( pseudoPattern , pl ) ;
You can’t perform that action at this time.
0 commit comments