mirror of
https://github.com/google/blockly.git
synced 2026-01-06 08:30:13 +01:00
chore: add api extractor configuration and fix some associated problems (#6388)
* chore: add configuration for api extractor * fix: remove extra param names * chore: private to internal * remove unrestricted * chore: remove double backticks * chore: remove fileoverview and export * as * chore: return to returns * chore: fix backslashes and angle brackets in tsdoc * chore: final to sealed * chore: ignore to internal * chore: fix link tags * chore: add api-extractor configuration * chore: add unrecognized tag names * chore: remove tsdoc-metadata * fix: correct index.d.ts * chore: fix connection link
This commit is contained in:
committed by
GitHub
parent
55ea12bd21
commit
ec72e8bb4d
@@ -41,21 +41,21 @@ export class Generator {
|
||||
/**
|
||||
* Arbitrary code to inject into locations that risk causing infinite loops.
|
||||
* Any instances of '%1' will be replaced by the block ID that failed.
|
||||
* E.g. ' checkTimeout(%1);\n'
|
||||
* E.g. ` checkTimeout(%1);\n`
|
||||
*/
|
||||
INFINITE_LOOP_TRAP: string|null = null;
|
||||
|
||||
/**
|
||||
* Arbitrary code to inject before every statement.
|
||||
* Any instances of '%1' will be replaced by the block ID of the statement.
|
||||
* E.g. 'highlight(%1);\n'
|
||||
* E.g. `highlight(%1);\n`
|
||||
*/
|
||||
STATEMENT_PREFIX: string|null = null;
|
||||
|
||||
/**
|
||||
* Arbitrary code to inject after every statement.
|
||||
* Any instances of '%1' will be replaced by the block ID of the statement.
|
||||
* E.g. 'highlight(%1);\n'
|
||||
* E.g. `highlight(%1);\n`
|
||||
*/
|
||||
STATEMENT_SUFFIX: string|null = null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user