Skip to content

Instantly share code, notes, and snippets.

@ufcpp
Created March 7, 2015 08:45
Show Gist options
  • Save ufcpp/8c3168054c6c655f9adf to your computer and use it in GitHub Desktop.
Save ufcpp/8c3168054c6c655f9adf to your computer and use it in GitHub Desktop.
the possibility of cycles in the analysis that the compiler must do to determine types
class A
{
public var N = B.M + 1;
}
class B
{
public var M = A.N - 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment