comparison graal/com.oracle.truffle.ruby.test/specs/tags/language/defined_tags.txt @ 13514:0fbee3eb71f0

Ruby: import project.
author Chris Seaton <chris.seaton@oracle.com>
date Mon, 06 Jan 2014 17:12:09 +0000
parents
children
comparison
equal deleted inserted replaced
13513:64a23ce736a0 13514:0fbee3eb71f0
1 fails:The defined? keyword when called with a method name having a module as receiver returns nil if the method is private
2 fails:The defined? keyword when called with a method name having a module as receiver returns nil if the method is protected
3 fails:The defined? keyword when called with a method name having a local variable as receiver calls #respond_to_missing?
4 fails:The defined? keyword for an expression returns nil for an expression with !~ and an undefined method
5 fails:The defined? keyword for an expression returns 'method' for an expression with '!~'
6 fails:The defined? keyword for an expression with logical connectives returns nil for an expression with '!' and an unset class variable
7 fails:The defined? keyword for an expression with logical connectives returns nil for an expression with 'not' and an unset class variable
8 fails:The defined? keyword for an expression with logical connectives returns nil for an expression with '!' and an unset global variable
9 fails:The defined? keyword for an expression with logical connectives returns nil for an expression with '!' and an unset instance variable
10 fails:The defined? keyword for an expression with logical connectives returns nil for an expression with 'not' and an unset global variable
11 fails:The defined? keyword for an expression with logical connectives returns nil for an expression with 'not' and an unset instance variable
12 fails:The defined? keyword for variables returns nil for a global variable that has not been read
13 fails:The defined? keyword for variables returns nil for a global variable that has been read but not assigned to
14 fails:The defined? keyword for variables when a String does not match a Regexp returns nil for $&
15 fails:The defined? keyword for variables when a String does not match a Regexp returns nil for $`
16 fails:The defined? keyword for variables when a String does not match a Regexp returns nil for $'
17 fails:The defined? keyword for variables when a String does not match a Regexp returns nil for $+
18 fails:The defined? keyword for variables when a String matches a Regexp returns 'global-variable' for $&
19 fails:The defined? keyword for variables when a String matches a Regexp returns 'global-variable' for $`
20 fails:The defined? keyword for variables when a String matches a Regexp returns 'global-variable' for $'
21 fails:The defined? keyword for variables when a String matches a Regexp returns 'global-variable' for $+
22 fails:The defined? keyword for variables when a String matches a Regexp returns 'global-variable' for the capture references
23 fails:The defined? keyword for variables when a Regexp does not match a String returns nil for $&
24 fails:The defined? keyword for variables when a Regexp does not match a String returns nil for $`
25 fails:The defined? keyword for variables when a Regexp does not match a String returns nil for $'
26 fails:The defined? keyword for variables when a Regexp does not match a String returns nil for $+
27 fails:The defined? keyword for variables when a Regexp matches a String returns 'global-variable' for $&
28 fails:The defined? keyword for variables when a Regexp matches a String returns 'global-variable' for $`
29 fails:The defined? keyword for variables when a Regexp matches a String returns 'global-variable' for $'
30 fails:The defined? keyword for variables when a Regexp matches a String returns 'global-variable' for $+
31 fails:The defined? keyword for variables when a Regexp matches a String returns 'global-variable' for the capture references
32 fails:The defined? keyword for a scoped constant returns nil when an undefined constant is scoped to a defined constant
33 fails:The defined? keyword for a top-level scoped constant returns nil when an undefined constant is scoped to a defined constant
34 fails:The defined? keyword for super returns nil when a superclass undef's the method
35 fails:The defined? keyword for super for a method taking no arguments returns 'super' from a block when a superclass method exists
36 fails:The defined? keyword for super for a method taking no arguments returns 'super' from a #define_method when a superclass method exists
37 fails:The defined? keyword for super for a method taking no arguments returns 'super' from a block in a #define_method when a superclass method exists
38 fails:The defined? keyword for super for a method taking no arguments returns 'super' when the method exists in a supermodule
39 fails:The defined? keyword for super for a method taking arguments returns 'super' when a superclass method exists
40 fails:The defined? keyword for super for a method taking arguments returns 'super' from a block when a superclass method exists
41 fails:The defined? keyword for super for a method taking arguments returns 'super' from a #define_method when a superclass method exists
42 fails:The defined? keyword for super for a method taking arguments returns 'super' from a block in a #define_method when a superclass method exists
43 fails:The defined? keyword for super within an included module's method returns 'super' when a superclass method exists in the including hierarchy
44 fails:The defined? keyword for instance variables returns nil if not assigned
45 fails:The defined? keyword for variables when a String does not match a Regexp returns nil for $1-$9
46 fails:The defined? keyword for variables when a String matches a Regexp returns nil for non-captures
47 fails:The defined? keyword for variables when a Regexp does not match a String returns nil for $1-$9
48 fails:The defined? keyword for variables when a Regexp matches a String returns nil for non-captures