@@ -545,12 +545,12 @@ CodeMirror.defineMode("pug", function (config) {
545545 || javaScriptArguments ( stream , state )
546546 || callArguments ( stream , state )
547547
548- || yieldStatement ( stream , state )
549- || doctype ( stream , state )
548+ || yieldStatement ( stream )
549+ || doctype ( stream )
550550 || interpolation ( stream , state )
551551 || caseStatement ( stream , state )
552552 || when ( stream , state )
553- || defaultStatement ( stream , state )
553+ || defaultStatement ( stream )
554554 || extendsStatement ( stream , state )
555555 || append ( stream , state )
556556 || prepend ( stream , state )
@@ -565,16 +565,16 @@ CodeMirror.defineMode("pug", function (config) {
565565 || tag ( stream , state )
566566 || filter ( stream , state )
567567 || code ( stream , state )
568- || id ( stream , state )
569- || className ( stream , state )
568+ || id ( stream )
569+ || className ( stream )
570570 || attrs ( stream , state )
571571 || attributesBlock ( stream , state )
572- || indent ( stream , state )
572+ || indent ( stream )
573573 || text ( stream , state )
574574 || comment ( stream , state )
575- || colon ( stream , state )
575+ || colon ( stream )
576576 || dot ( stream , state )
577- || fail ( stream , state ) ;
577+ || fail ( stream ) ;
578578
579579 return tok === true ? null : tok ;
580580 }
0 commit comments