@@ -112,7 +112,7 @@ JavaScriptCompiler.prototype = {
112112 this . source . currentLocation = firstLoc ;
113113 this . pushSource ( '' ) ;
114114
115- /* istanbul ignore next */
115+ /* v8 ignore next */
116116 if ( this . stackSlot || this . inlineStack . length || this . compileStack . length ) {
117117 throw new Exception ( 'Compile completed with content left on stack' ) ;
118118 }
@@ -924,7 +924,7 @@ JavaScriptCompiler.prototype = {
924924 createdStack ,
925925 usedLiteral ;
926926
927- /* istanbul ignore next */
927+ /* v8 ignore next */
928928 if ( ! this . isInline ( ) ) {
929929 throw new Exception ( 'replaceStack on non-inline' ) ;
930930 }
@@ -972,7 +972,7 @@ JavaScriptCompiler.prototype = {
972972 this . inlineStack = [ ] ;
973973 for ( let i = 0 , len = inlineStack . length ; i < len ; i ++ ) {
974974 let entry = inlineStack [ i ] ;
975- /* istanbul ignore if */
975+ /* v8 ignore next */
976976 if ( entry instanceof Literal ) {
977977 this . compileStack . push ( entry ) ;
978978 } else {
@@ -994,7 +994,7 @@ JavaScriptCompiler.prototype = {
994994 return item . value ;
995995 } else {
996996 if ( ! inline ) {
997- /* istanbul ignore next */
997+ /* v8 ignore next */
998998 if ( ! this . stackSlot ) {
999999 throw new Exception ( 'Invalid stack pop' ) ;
10001000 }
@@ -1008,7 +1008,7 @@ JavaScriptCompiler.prototype = {
10081008 let stack = this . isInline ( ) ? this . inlineStack : this . compileStack ,
10091009 item = stack [ stack . length - 1 ] ;
10101010
1011- /* istanbul ignore if */
1011+ /* v8 ignore next */
10121012 if ( item instanceof Literal ) {
10131013 return item . value ;
10141014 } else {
0 commit comments