changeset 13459:f76593e3fedb

Truffle: make the new class SourceManager.SourceImpl public temporarily until some related changes propagate completely.
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Wed, 18 Dec 2013 03:16:17 -0800
parents f45452c87b52
children 163b418ec095
files graal/com.oracle.truffle.api/src/com/oracle/truffle/api/source/SourceManager.java
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/source/SourceManager.java	Wed Dec 18 03:13:19 2013 -0800
+++ b/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/source/SourceManager.java	Wed Dec 18 03:16:17 2013 -0800
@@ -142,7 +142,8 @@
         return builder.toString();
     }
 
-    private abstract static class SourceImpl implements Source {
+    // TODO (mlvdv) make this private once some related code changes propagate
+    public abstract static class SourceImpl implements Source {
 
         protected TextMap textMap = null;