comparison graal/com.oracle.truffle.api.codegen.test/src/com/oracle/truffle/api/codegen/test/TypeSystemTest.java @ 8592:a80bf36c6a1e

Refactor to shared template method signature comparison.
author Christian Humer <christian.humer@gmail.com>
date Mon, 01 Apr 2013 11:52:38 +0200
parents aad7e9f4f71c
children 6ef9fc7375c7
comparison
equal deleted inserted replaced
8591:5c58da5b8233 8592:a80bf36c6a1e
48 final long executeSpecial() { 48 final long executeSpecial() {
49 return 42L; 49 return 42L;
50 } 50 }
51 51
52 abstract Object execute(); 52 abstract Object execute();
53
54 } 53 }
55 54
56 @TypeSystemReference(SimpleTypes.class) 55 @TypeSystemReference(SimpleTypes.class)
57 static class TestRootNode extends RootNode { 56 static class TestRootNode extends RootNode {
58 57