Skip to content

Instantly share code, notes, and snippets.

@qharlie
Created January 7, 2014 16:55
Show Gist options
  • Save qharlie/8302419 to your computer and use it in GitHub Desktop.
Save qharlie/8302419 to your computer and use it in GitHub Desktop.
allMemberTypes.forall {
memberType => if (!predefinedTypes.contains(memberType) && !userDefined.contains(memberType)) {
Reporter.error("Oops! I couldn't find a type for " + memberType + " , searching all these types \n\n" +
( predefinedTypes ++ userDefined ) .toString )
}
!predefinedTypes.contains(memberType) && !userDefined.contains(memberType)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment