BadScript 2
Loading...
Searching...
No Matches
BadScript2.BadRuntimeExecutionResult Struct Reference

Gets returned by the bad runtime when an execution is finished. More...

Public Member Functions

 BadRuntimeExecutionResult (BadObject result, BadObject? exports)
 Creates a new BadRuntimeExecutionResult.
 

Public Attributes

readonly BadObject Result
 The Result of the Execution.
 
readonly? BadObject Exports
 The Exported Object.
 

Detailed Description

Gets returned by the bad runtime when an execution is finished.

Definition at line 8 of file BadRuntimeExecutionResult.cs.

Constructor & Destructor Documentation

◆ BadRuntimeExecutionResult()

BadScript2.BadRuntimeExecutionResult.BadRuntimeExecutionResult ( BadObject  result,
BadObject exports 
)

Creates a new BadRuntimeExecutionResult.

Parameters
resultThe Result of the Execution
exportsThe Exported Object

Definition at line 25 of file BadRuntimeExecutionResult.cs.

26 {
27 Result = result;
28 Exports = exports;
29 }
readonly? BadObject Exports
The Exported Object.
readonly BadObject Result
The Result of the Execution.

Member Data Documentation

◆ Exports

readonly? BadObject BadScript2.BadRuntimeExecutionResult.Exports

The Exported Object.

Definition at line 18 of file BadRuntimeExecutionResult.cs.

◆ Result

readonly BadObject BadScript2.BadRuntimeExecutionResult.Result

The Result of the Execution.

Definition at line 13 of file BadRuntimeExecutionResult.cs.


The documentation for this struct was generated from the following file: