You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* A generic class representing a sandbox environment.
12
+
*
13
+
*
14
+
*
15
+
* The sandbox will create a proxy object that will call the methods of the instance
16
+
* and catch any errors that may occur. This allows for dealing with less important objects without
17
+
* the potential of crashing the entire application, however it will void the ability to easily use type safety.
18
+
* @paraminstance The type of elements this sandbox will handle.
19
+
* @paramcatchFunction A function that will be called when an error occurs. The function will receive the error, the method name and the arguments. If not provided, a default function will be used.
20
+
* @paramverboseErrors If true, the stack trace will be printed when an error occurs.
0 commit comments