comparison truffle/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/access/SLReadPropertyNode.java @ 22157:dc83cc1f94f2

Using fully qualified imports
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 16 Sep 2015 11:33:22 +0200
parents 503529c65456
children c1f804ce6cad
comparison
equal deleted inserted replaced
22156:50056a161d7f 22157:dc83cc1f94f2
38 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 38 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
39 * SOFTWARE. 39 * SOFTWARE.
40 */ 40 */
41 package com.oracle.truffle.sl.nodes.access; 41 package com.oracle.truffle.sl.nodes.access;
42 42
43 import com.oracle.truffle.api.*; 43 import com.oracle.truffle.api.CompilerDirectives;
44 import com.oracle.truffle.api.frame.*; 44 import com.oracle.truffle.api.frame.VirtualFrame;
45 import com.oracle.truffle.api.nodes.*; 45 import com.oracle.truffle.api.nodes.NodeInfo;
46 import com.oracle.truffle.api.source.*; 46 import com.oracle.truffle.api.source.SourceSection;
47 import com.oracle.truffle.api.utilities.*; 47 import com.oracle.truffle.api.utilities.ConditionProfile;
48 import com.oracle.truffle.sl.*; 48 import com.oracle.truffle.sl.SLException;
49 import com.oracle.truffle.sl.nodes.*; 49 import com.oracle.truffle.sl.nodes.SLExpressionNode;
50 import com.oracle.truffle.sl.runtime.*; 50 import com.oracle.truffle.sl.runtime.SLContext;
51 51
52 /** 52 /**
53 * The node for accessing a property of an object. When executed, this node first evaluates the 53 * The node for accessing a property of an object. When executed, this node first evaluates the
54 * object expression on the left side of the dot operator and then reads the named property. 54 * object expression on the left side of the dot operator and then reads the named property.
55 */ 55 */