Improve docs for language utils

This commit is contained in:
Nilay Majorwar 2022-01-31 18:54:30 +05:30
parent e0a5f431d8
commit 9d02b3f7dd
2 changed files with 33 additions and 11 deletions

View File

@ -2,15 +2,19 @@ import monaco from "monaco-editor";
import React from "react"; import React from "react";
/** /**
* Type alias for defining range of characters to highlight in a single line. * Type alias for defining range of characters in a single line.
* - Missing `start` means highlight starting from start of the line. * - Missing `start` means range starting from start of the line.
* - Missing `end` means highlight ending at the end of the line. * - Missing `end` means range ending at the end of the line.
*/ */
export type CharRange = { start?: number; end?: number }; export type CharRange = { start?: number; end?: number };
/** Type denoting a range of text in document spanning within a line */ /**
* Type denoting a range of text in document spanning within a line.
*/
export type DocumentRange = { export type DocumentRange = {
/** Line number of the range */
line: number; line: number;
/** Section of line - omit to cover entire line */
charRange?: CharRange; charRange?: CharRange;
}; };
@ -47,7 +51,7 @@ export type StepExecutionResult<RS> = {
*/ */
nextStepLocation: DocumentRange | null; nextStepLocation: DocumentRange | null;
/** Signal if execution has been paused/stopped */ /** Signal if execution has been paused */
signal?: "paused"; signal?: "paused";
}; };

View File

@ -45,39 +45,57 @@ export const isRuntimeError = (error: any): error is RuntimeError => {
return error instanceof RuntimeError || error.name === "RuntimeError"; return error instanceof RuntimeError || error.name === "RuntimeError";
}; };
/** Error sent by worker in case of parsing error */ /**
* Error sent by worker in case of parsing error.
* Not for use by language providers.
*/
export type WorkerParseError = { export type WorkerParseError = {
name: "ParseError"; name: "ParseError";
message: string; message: string;
range: DocumentRange; range: DocumentRange;
}; };
/** Error sent by worker in case error at runtime */ /**
* Error sent by worker in case error at runtime.
* Not for use by language providers.
*/
export type WorkerRuntimeError = { export type WorkerRuntimeError = {
name: "RuntimeError"; name: "RuntimeError";
message: string; message: string;
}; };
/** Error sent by worker indicating an implementation bug */ /**
* Error sent by worker indicating an implementation bug.
* Not for use by language providers.
*/
export type WorkerError = { export type WorkerError = {
name: string; name: string;
message: string; message: string;
stack?: string; stack?: string;
}; };
/** Serialize a RuntimeError instance into a plain object */ /**
* Serialize a RuntimeError instance into a plain object.
* Not for use by language providers.
*/
export const serializeRuntimeError = ( export const serializeRuntimeError = (
error: RuntimeError error: RuntimeError
): WorkerRuntimeError => { ): WorkerRuntimeError => {
return { name: "RuntimeError", message: error.message }; return { name: "RuntimeError", message: error.message };
}; };
/** Serialize a ParseError instance into a plain object */ /**
* Serialize a ParseError instance into a plain object.
* Not for use by language providers.
*/
export const serializeParseError = (error: ParseError): WorkerParseError => { export const serializeParseError = (error: ParseError): WorkerParseError => {
return { name: "ParseError", message: error.message, range: error.range }; return { name: "ParseError", message: error.message, range: error.range };
}; };
/** Serialize an arbitrary error into a plain object */ /**
* Serialize an arbitrary error into a plain object.
* Not for use by language providers.
*/
export const serializeError = (error: Error): WorkerError => { export const serializeError = (error: Error): WorkerError => {
return { name: error.name, message: error.message, stack: error.stack }; return { name: error.name, message: error.message, stack: error.stack };
}; };