annotate graal/com.oracle.truffle.ruby.test/specs/tags/language/def_tags.txt @ 13705:ac5b0f31f7a2

Truffle API-change: FrameDescriptors are now stored in the RootNode in a final field instead of the CallTarget.
author Christian Humer <christian.humer@gmail.com>
date Fri, 17 Jan 2014 17:06:08 +0100
parents 0fbee3eb71f0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
13514
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
1 fails:Defining an 'initialize' method sets the method's visibility to private
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
2 fails:Defining an 'initialize_copy' method sets the method's visibility to private
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
3 fails:An instance method with a default argument assigns an empty Array to an unused splat argument
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
4 fails:An instance method with a default argument prefers to assign to a default argument when there are no required arguments
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
5 fails:An instance method with a default argument does not evaluate the default when passed a value and a * argument
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
6 fails:A singleton method definition raises RuntimeError if frozen
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
7 fails:Redefining a singleton method does not inherit a previously set visibility
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
8 fails:Redefining a singleton method does not inherit a previously set visibility
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
9 fails:A method defined with extreme default arguments may use an fcall as a default
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
10 fails:A method defined with extreme default arguments may use preceding arguments as defaults
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
11 fails:A method defined with extreme default arguments may use a lambda as a default
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
12 fails:A singleton method defined with extreme default arguments may use an fcall as a default
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
13 fails:A singleton method defined with extreme default arguments may use preceding arguments as defaults
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
14 fails:A singleton method defined with extreme default arguments may use a lambda as a default
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
15 fails:A method definition inside a metaclass scope can create a class method
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
16 fails:A method definition inside a metaclass scope can create a singleton method
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
17 fails:A method definition inside a metaclass scope raises RuntimeError if frozen
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
18 fails:A nested method definition creates an instance method when evaluated in an instance method
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
19 fails:A nested method definition creates a class method when evaluated in a class method
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
20 fails:A nested method definition creates a singleton method when evaluated in the metaclass of an instance
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
21 fails:A method definition inside an instance_eval creates a singleton method
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
22 fails:A method definition inside an instance_eval creates a singleton method when evaluated inside a metaclass
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
23 fails:A method definition inside an instance_eval creates a class method when the receiver is a class
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
24 fails:A method definition in an eval creates an instance method
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
25 fails:A method definition in an eval creates a class method
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
26 fails:A method definition in an eval creates a singleton method
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
27 fails:a method definition that sets more than one default parameter all to the same value assigns them all the same object by default
0fbee3eb71f0 Ruby: import project.
Chris Seaton <chris.seaton@oracle.com>
parents:
diff changeset
28 fails:The def keyword within a closure looks outside the closure for the visibility