mirror of
https://github.com/google/blockly.git
synced 2026-01-11 10:57:07 +01:00
chore(generators): Fix nits (#7166)
Addresses various nits that escaped previous PRs: * Add TSDoc for `BlockGenerator` in `core/generator.ts` for PR #7150. * Fix bad formating in `generators/javascript.js` from PR #7153. * Add missing `@enum` tag that should have been included in PR #7160. * Delete obsolete comment from `generators/python.js` for PR #7163.
This commit is contained in:
committed by
GitHub
parent
438df8761d
commit
12b91ae49c
@@ -231,7 +231,6 @@ export class PythonGenerator extends CodeGenerator {
|
||||
* @protected
|
||||
*/
|
||||
quote_(string) {
|
||||
// Can't use goog.string.quote since % must also be escaped.
|
||||
string = string.replace(/\\/g, '\\\\').replace(/\n/g, '\\\n');
|
||||
|
||||
// Follow the CPython behaviour of repr() for a non-byte string.
|
||||
|
||||
Reference in New Issue
Block a user