File tree 2 files changed +1
-2
lines changed
2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ export class BlockPath {
217
217
case char === STATE_END :
218
218
if ( ! isState ( token ) ) { return this . throw ( ERRORS . illegalCharNotInState ( char ) ) ; }
219
219
if ( ( ! hasName ( token ) || ! isQuoted ( token ) ) && ! isIdent ( working ) ) {
220
- console . log ( working ) ; return this . throw ( ERRORS . invalidIdent ( working ) , working . length ) ;
220
+ return this . throw ( ERRORS . invalidIdent ( working ) , working . length ) ;
221
221
}
222
222
( hasName ( token ) ) ? ( token . value = working ) : ( token . name = working ) ;
223
223
this . addToken ( token ) ;
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ export class BlockPathTests {
13
13
14
14
@test "finds the class" ( ) {
15
15
let path = new BlockPath ( ".test" ) ;
16
- console . log ( path . block , path . path ) ;
17
16
assert . equal ( path . block , "" ) ;
18
17
assert . equal ( path . path , ".test" ) ;
19
18
}
You can’t perform that action at this time.
0 commit comments