mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-26 17:43:48 +01:00
dont run inf loop check on ns1 scripts
This commit is contained in:
parent
2926ee0fc0
commit
d99d3fc222
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -234,7 +234,6 @@ export function checkInfiniteLoop(code: string): number {
|
|||||||
{
|
{
|
||||||
WhileStatement: (node: acorn.Node, st: any, walkDeeper: walk.WalkerCallback<any>) => {
|
WhileStatement: (node: acorn.Node, st: any, walkDeeper: walk.WalkerCallback<any>) => {
|
||||||
if (nodeHasTrueTest((node as any).test) && !hasAwait(node)) {
|
if (nodeHasTrueTest((node as any).test) && !hasAwait(node)) {
|
||||||
console.log(node);
|
|
||||||
missingAwaitLine = (code.slice(0, node.start).match(/\n/g) || []).length + 1;
|
missingAwaitLine = (code.slice(0, node.start).match(/\n/g) || []).length + 1;
|
||||||
} else {
|
} else {
|
||||||
(node as any).body && walkDeeper((node as any).body, st);
|
(node as any).body && walkDeeper((node as any).body, st);
|
||||||
|
@ -227,11 +227,9 @@ export function Root(props: IProps): React.ReactElement {
|
|||||||
setFilename(event.target.value);
|
setFilename(event.target.value);
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateCode(newCode?: string): void {
|
function infLoop(newCode: string): void {
|
||||||
if (newCode === undefined) return;
|
if (editorRef.current === null) return;
|
||||||
lastCode = newCode;
|
if (!filename.endsWith(".ns") && !filename.endsWith(".js")) return;
|
||||||
if (editorRef.current !== null) {
|
|
||||||
lastPosition = editorRef.current.getPosition();
|
|
||||||
const awaitWarning = checkInfiniteLoop(newCode);
|
const awaitWarning = checkInfiniteLoop(newCode);
|
||||||
if (awaitWarning !== -1) {
|
if (awaitWarning !== -1) {
|
||||||
const newDecorations = editorRef.current.deltaDecorations(decorations, [
|
const newDecorations = editorRef.current.deltaDecorations(decorations, [
|
||||||
@ -257,6 +255,14 @@ export function Root(props: IProps): React.ReactElement {
|
|||||||
setDecorations(newDecorations);
|
setDecorations(newDecorations);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function updateCode(newCode?: string): void {
|
||||||
|
if (newCode === undefined) return;
|
||||||
|
lastCode = newCode;
|
||||||
|
if (editorRef.current !== null) {
|
||||||
|
lastPosition = editorRef.current.getPosition();
|
||||||
|
infLoop(newCode);
|
||||||
|
}
|
||||||
setCode(newCode);
|
setCode(newCode);
|
||||||
updateRAM(newCode);
|
updateRAM(newCode);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user