Suppress Type Hints (Experimental) (Effect) — Skript

Addon: Skript · Category: Effect · Since: 2.12

Syntax

[un]suppress [local variable] type hints

Description

An effect to suppress local variable type hint errors for the syntax lines that follow this effect. NOTE: Suppressing type hints also prevents syntax from providing new type hints. For example, with type hints suppressed, 'set {_x} to true' would not provide 'boolean' as a type hint for '{_x}'

Examples

	start suppressing local variable type hints
	# potentially unsafe code goes here
	stop suppressing local variable type hints

View source