Skip to content

deprecated-initializer-type

Using a type as a value is deprecated

INFO

☑️ The predefined configuration "mslint:recommended" enables this rule.

Rule details

This rule prohibits the use of a type name to initialize a value. You must use a literal instead.

Example of incorrect code for this rule:

maniascript
Void Function_01(Integer _Param1) {
  return Integer;
}

main() {
  declare Integer Variable_01 = Integer;
  Variable_01 = Integer;
  Function_01(Integer);
}

Example of correct code for this rule:

maniascript
Void Function_01(Integer _Param1) {
  return 1;
}

main() {
  declare Integer Variable_01 = 2;
  Variable_01 = 3;
  Function_01(4);
}

Resources