Skip to content

Commit

Permalink
Update generated documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 19, 2023
1 parent 622e0d9 commit 1be9d4f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion generated/libs/BuiltIn.arucas
Original file line number Diff line number Diff line change
Expand Up @@ -1110,7 +1110,7 @@ class String {
* Parameter - Object (objects): The objects to insert.
* Returns - String: The formatted string.
*/
fun format(objects...: Object): String;
fun format(objects...): String;

/*
* This returns the length of the string.
Expand Down
6 changes: 3 additions & 3 deletions generated/libs/Extensions.arucas
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ fun print(value: Object): Null;
* other wise it will print the contents without a new line.
* Parameter - Object (value): The value to print.
*/
fun print(value...: Object): Null;
fun print(value...): Null;

/*
* This logs something to the debug output.
Expand Down Expand Up @@ -278,7 +278,7 @@ fun isWithinArea(x: Number, y: Number, z: Number): Boolean;
.
* Parameter - Object (args): The placement arguments, see the function description.
*/
fun place(args...: Object): Null;
fun place(args...): Null;

/*
* This queries a the data for a block at a given position in a given dimension.
Expand All @@ -297,7 +297,7 @@ fun place(args...: Object): Null;
"state"- returns a map containing the state info
"nbt"- returns a map containing all the nbt data.
*/
fun query(args...: Object): String;
fun query(args...): String;

/*
* Modifies the origin of the defined area.
Expand Down
10 changes: 5 additions & 5 deletions generated/libs/util/Internal.arucas
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Java {
* Parameter - Object (parameters): The parameters to call the method with.
* Returns - Java: The return value of the method call wrapped in the Java wrapper.
*/
fun callMethod(methodName: String, parameters...: Object): Java;
fun callMethod(methodName: String, parameters...): Java;

/*
* Deprecated: You should call the method directly on the value: `Java.constructClass('me.senseiwells.impl.Test').A;`
Expand Down Expand Up @@ -63,7 +63,7 @@ class Java {
* Parameter - Object (values): The values to add to the array.
* Returns - Java: The Java Object array.
*/
static fun arrayOf(values...: Object): Java;
static fun arrayOf(values...): Java;

/*
* Creates a Java boolean array with a given size, the array is filled with false
Expand Down Expand Up @@ -105,7 +105,7 @@ class Java {
* Parameter - Object (parameters): Any parameters to call the method with.
* Returns - Java: The return value of the method wrapped in the Java wrapper.
*/
static fun callStaticMethod(className: String, methodName: String, parameters...: Object): Java;
static fun callStaticMethod(className: String, methodName: String, parameters...): Java;

/*
* Creates a Java char array with a given size, the array is filled with null characters's
Expand Down Expand Up @@ -146,7 +146,7 @@ class Java {
* Parameter - Object (parameters): Any parameters to pass to the constructor.
* Returns - Java: The constructed Java Object wrapped in the Java wrapper.
*/
static fun constructClass(className: String, parameters...: Object): Java;
static fun constructClass(className: String, parameters...): Java;

/*
* Creates a Java Consumer object from a given function, it must have one
Expand Down Expand Up @@ -323,7 +323,7 @@ class Java {
* Parameter - Java (values): The values to add to the array.
* Returns - Java: The typed object array.
*/
static fun typedArrayOf(castType: JavaClass, values...: Java): Java;
static fun typedArrayOf(castType: JavaClass, values...): Java;

/*
* Converts any Arucas value into a Java value then wraps it in the Java wrapper and returns it.
Expand Down

0 comments on commit 1be9d4f

Please sign in to comment.