35 lines
		
	
	
		
			1008 B
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1008 B
		
	
	
	
		
			Factor
		
	
	
! Copyright (C) 2006, 2009 Slava Pestov.
 | 
						|
! See http://factorcode.org/license.txt for BSD license.
 | 
						|
IN: stack-checker.errors
 | 
						|
 | 
						|
TUPLE: inference-error ;
 | 
						|
 | 
						|
ERROR: do-not-compile < inference-error word ;
 | 
						|
 | 
						|
ERROR: bad-macro-input < inference-error macro ;
 | 
						|
 | 
						|
ERROR: unknown-macro-input < inference-error macro ;
 | 
						|
 | 
						|
ERROR: unbalanced-branches-error < inference-error branches quots ;
 | 
						|
 | 
						|
ERROR: too-many->r < inference-error ;
 | 
						|
 | 
						|
ERROR: too-many-r> < inference-error ;
 | 
						|
 | 
						|
ERROR: missing-effect < inference-error word ;
 | 
						|
 | 
						|
ERROR: effect-error < inference-error inferred declared ;
 | 
						|
 | 
						|
ERROR: recursive-quotation-error < inference-error quot ;
 | 
						|
 | 
						|
ERROR: undeclared-recursion-error < inference-error word ;
 | 
						|
 | 
						|
ERROR: diverging-recursion-error < inference-error word ;
 | 
						|
 | 
						|
ERROR: unbalanced-recursion-error < inference-error word height ;
 | 
						|
 | 
						|
ERROR: inconsistent-recursive-call-error < inference-error word ;
 | 
						|
 | 
						|
ERROR: transform-expansion-error < inference-error error continuation word ;
 | 
						|
 | 
						|
ERROR: bad-declaration-error < inference-error declaration ; |