typeCheckerFor abstract method

TypeChecker typeCheckerFor(
  1. String name,
  2. String packageImport
)

Creates a type checker for a type identified by name and package.

This allows checking if elements are of a specific type or subtype without needing the actual type at compile time.

@param name The name of the type @param packageImport The package import path for the type @return A TypeChecker for the specified type

Implementation

TypeChecker typeCheckerFor(String name, String packageImport);