Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Add tags for priviledge levels",
"packageName": "@minecraft/markup-generators-plugin",
"email": "brandon.chan@skyboxlabs.com",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ export class ExampleClass1 {
private constructor();
/**
* @remarks
* This function can't be called in restricted-execution mode.
* @privilege no-restricted-execution. This function can't be called in restricted-execution mode.
*
*/
testMethodWithAddedArgument(): boolean;
Expand Down Expand Up @@ -226,7 +226,7 @@ export class ExampleClass1 {
private constructor();
/**
* @remarks
* This function can't be called in restricted-execution mode.
* @privilege no-restricted-execution. This function can't be called in restricted-execution mode.
*
*/
testMethodWithAddedArgument(addedArg?: number): boolean;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export class ClassWithArrayOfVariantsProperty {
private constructor();
/**
* @remarks
* This property can't be used in restricted-execution mode.
* @privilege restricted-execution-unusable. This property can't be used in restricted-execution mode.
*
*/
exampleMember?: (boolean | number | string | undefined)[];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export class ClassWithArrayOfVariantsProperty {
private constructor();
/**
* @remarks
* This property can't be used in restricted-execution mode.
* @privilege restricted-execution-unusable. This property can't be used in restricted-execution mode.
*
*/
exampleMember?: (boolean | string)[];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -479,68 +479,68 @@ export class ClassWithBounds {
private constructor();
/**
* @remarks
* This property can't be used in restricted-execution mode.
* @privilege restricted-execution-unusable. This property can't be used in restricted-execution mode.
*
* Bounds: [0, 0]
*/
r: number;
/**
* @remarks
* This property can't be used in restricted-execution mode.
* @privilege restricted-execution-unusable. This property can't be used in restricted-execution mode.
*
* Minimum Value: -255
*/
s: number;
/**
* @remarks
* This property can't be used in restricted-execution mode.
* @privilege restricted-execution-unusable. This property can't be used in restricted-execution mode.
*
* Maximum Value: 1
*/
t: number;
/**
* @remarks
* This property can't be used in restricted-execution mode.
* @privilege restricted-execution-unusable. This property can't be used in restricted-execution mode.
*
*/
u: number;
/**
* @remarks
* This property can't be used in restricted-execution mode.
* @privilege restricted-execution-unusable. This property can't be used in restricted-execution mode.
*
* Bounds: [-255, -1]
*/
v: number;
/**
* @remarks
* This property can't be used in restricted-execution mode.
* @privilege restricted-execution-unusable. This property can't be used in restricted-execution mode.
*
*/
w: number;
/**
* @remarks
* This property can't be used in restricted-execution mode.
* @privilege restricted-execution-unusable. This property can't be used in restricted-execution mode.
*
* Minimum Value: 1
*/
x: number;
/**
* @remarks
* This property can't be used in restricted-execution mode.
* @privilege restricted-execution-unusable. This property can't be used in restricted-execution mode.
*
* Maximum Value: 255
*/
y: number;
/**
* @remarks
* This property can't be used in restricted-execution mode.
* @privilege restricted-execution-unusable. This property can't be used in restricted-execution mode.
*
* Bounds: [1, 255]
*/
z: number;
/**
* @remarks
* This function can't be called in restricted-execution mode.
* @privilege no-restricted-execution. This function can't be called in restricted-execution mode.
*
* @param s
* Minimum value: -255
Expand Down Expand Up @@ -602,68 +602,68 @@ export class ClassWithBounds {
private constructor();
/**
* @remarks
* This property can't be used in restricted-execution mode.
* @privilege restricted-execution-unusable. This property can't be used in restricted-execution mode.
*
* Bounds: [0, 0]
*/
r: number;
/**
* @remarks
* This property can't be used in restricted-execution mode.
* @privilege restricted-execution-unusable. This property can't be used in restricted-execution mode.
*
* Minimum Value: 1
*/
s: number;
/**
* @remarks
* This property can't be used in restricted-execution mode.
* @privilege restricted-execution-unusable. This property can't be used in restricted-execution mode.
*
* Maximum Value: 255
*/
t: number;
/**
* @remarks
* This property can't be used in restricted-execution mode.
* @privilege restricted-execution-unusable. This property can't be used in restricted-execution mode.
*
*/
u: number;
/**
* @remarks
* This property can't be used in restricted-execution mode.
* @privilege restricted-execution-unusable. This property can't be used in restricted-execution mode.
*
* Bounds: [1, 255]
*/
v: number;
/**
* @remarks
* This property can't be used in restricted-execution mode.
* @privilege restricted-execution-unusable. This property can't be used in restricted-execution mode.
*
* Bounds: [1, 255]
*/
w: number;
/**
* @remarks
* This property can't be used in restricted-execution mode.
* @privilege restricted-execution-unusable. This property can't be used in restricted-execution mode.
*
* Maximum Value: 255
*/
x: number;
/**
* @remarks
* This property can't be used in restricted-execution mode.
* @privilege restricted-execution-unusable. This property can't be used in restricted-execution mode.
*
* Minimum Value: 1
*/
y: number;
/**
* @remarks
* This property can't be used in restricted-execution mode.
* @privilege restricted-execution-unusable. This property can't be used in restricted-execution mode.
*
*/
z: number;
/**
* @remarks
* This function can't be called in restricted-execution mode.
* @privilege no-restricted-execution. This function can't be called in restricted-execution mode.
*
* @param s
* Minimum value: 1
Expand Down
Loading
Loading