changeset 22940:36a46bae0a59

update truffle import.
author Andreas Woess <andreas.woess@oracle.com>
date Tue, 03 Nov 2015 23:38:32 +0100
parents 6c234690e5b9
children 4311a0d2fd36
files graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/InstrumentationPartialEvaluationTest.java graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/InstrumentationTestMode.java mx.graal/suite.py
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/InstrumentationPartialEvaluationTest.java	Tue Nov 03 13:44:44 2015 -0800
+++ b/graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/InstrumentationPartialEvaluationTest.java	Tue Nov 03 23:38:32 2015 +0100
@@ -66,7 +66,7 @@
     public void before() {
         // TODO (mlvdv) eventually abstract this
         try {
-            vm = PolyglotEngine.buildNew().build();
+            vm = PolyglotEngine.newBuilder().build();
             final Field field = PolyglotEngine.class.getDeclaredField("instrumenter");
             field.setAccessible(true);
             instrumenter = (Instrumenter) field.get(vm);
--- a/graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/InstrumentationTestMode.java	Tue Nov 03 13:44:44 2015 -0800
+++ b/graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/InstrumentationTestMode.java	Tue Nov 03 23:38:32 2015 +0100
@@ -34,7 +34,7 @@
     public static void set(boolean enable) {
 
         try {
-            final PolyglotEngine vm = PolyglotEngine.buildNew().build();
+            final PolyglotEngine vm = PolyglotEngine.newBuilder().build();
             final Field instrumenterField = vm.getClass().getDeclaredField("instrumenter");
             instrumenterField.setAccessible(true);
             final Object instrumenter = instrumenterField.get(vm);
--- a/mx.graal/suite.py	Tue Nov 03 13:44:44 2015 -0800
+++ b/mx.graal/suite.py	Tue Nov 03 23:38:32 2015 +0100
@@ -47,7 +47,7 @@
             },
             {
                "name" : "truffle",
-               "version" : "fdc687bad5d4abafb8bbb6ab7a0fe00908a00c19",
+               "version" : "bb3c03f2442d51df60e8f154c14b8b28ffe52dfc",
                "urls" : [
                     {"url" : "http://lafo.ssw.uni-linz.ac.at/hg/truffle", "kind" : "hg"},
                     {"url" : "https://curio.ssw.jku.at/nexus/content/repositories/snapshots", "kind" : "binary"},