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(
9696 'utf8'
9797 ) ;
9898 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 ) ;
105103
106104 var pseudoPattern = new Pattern ( 'test/pseudomodifier.mustache' ) ;
107105 pseudoPattern . template = fs . readFileSync (
108106 patterns_dir + 'test/pseudomodifier.mustache' ,
109107 'utf8'
110108 ) ;
111109 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 ) ;
118114
119115 addPattern ( atomPattern , pl ) ;
120116 addPattern ( pseudoPattern , pl ) ;
You can’t perform that action at this time.
0 commit comments