comparison graal/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/nodes/NodeUtilTest.java @ 18485:e3c95cbbb50c

Truffle Instrumentation: major API revision, based around the Probe and Instrument classes; add Instrumentable API for language implementors, with most details automated; reimplemented to handle AST splitting automatically; more JUnit tests.
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Sun, 23 Nov 2014 16:07:23 -0800
parents 5787218bad91
children
comparison
equal deleted inserted replaced
18484:e97e1f07a3d6 18485:e3c95cbbb50c
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 */ 22 */
23 package com.oracle.truffle.api.test.nodes; 23 package com.oracle.truffle.api.test.nodes;
24 24
25 import static org.hamcrest.CoreMatchers.*;
26 import static org.junit.Assert.*;
27
25 import java.util.*; 28 import java.util.*;
26 29
27 import org.junit.*; 30 import org.junit.*;
28 import static org.junit.Assert.*;
29 import static org.hamcrest.CoreMatchers.*;
30 31
31 import com.oracle.truffle.api.frame.*; 32 import com.oracle.truffle.api.frame.*;
32 import com.oracle.truffle.api.nodes.*; 33 import com.oracle.truffle.api.nodes.*;
33 34
34 public class NodeUtilTest { 35 public class NodeUtilTest {