@putout/printer
Advanced tools
Comparing version 1.6.6 to 1.6.7
@@ -30,7 +30,13 @@ 'use strict'; | ||
...TryStatements, | ||
ContinueStatement(path, {write, indent}) { | ||
BreakStatement(path, {print, indent}) { | ||
indent(); | ||
write('continue;\n'); | ||
print('break;'); | ||
print.newline(); | ||
}, | ||
ContinueStatement(path, {indent, print}) { | ||
indent(); | ||
print('continue;'); | ||
print.newline(); | ||
}, | ||
}; | ||
{ | ||
"name": "@putout/printer", | ||
"version": "1.6.6", | ||
"version": "1.6.7", | ||
"type": "commonjs", | ||
@@ -5,0 +5,0 @@ "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
40110
1128