base_outer_resolution_extend.notest.gd 604 B

1234567891011121314151617181920212223
  1. extends "base_outer_resolution_base.notest.gd"
  2. const B: = preload("base_outer_resolution_b.notest.gd")
  3. static func test_a(a: A) -> void:
  4. print(a is A)
  5. static func test_b(b: B) -> void:
  6. print(b is B)
  7. class InnerClass extends InnerClassInBase:
  8. static func test_c(c: C) -> void:
  9. print(c is C)
  10. class InnerInnerClass:
  11. static func test_a_b_c(a: A, b: B, c: C) -> void:
  12. print(a is A and b is B and c is C)
  13. static func test_enum(test_enum: C.TestEnum) -> void:
  14. print(test_enum == C.TestEnum.HELLO_WORLD)
  15. static func test_a_prime(a_prime: A.APrime) -> void:
  16. print(a_prime is A.APrime)