You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
325 B

extends "../base.gd"
func _init(value, context: String) -> void:
var passed: String = "%s is builtin: Array" % value as String
var failed: String = "%s is not builtin: Array" % value as String
self.context = context
self.success = value is Array
self.expected = passed
self.result = passed if self.success else failed