Skip to content

Commit 8500ef0

Browse files
author
dlsmith
committed
DynamicJava: Updated plt.jar.
git-svn-id: file:///tmp/test-svn/trunk@4469 fe72c1cf-3628-48e9-8b72-1c46755d3cff
1 parent af38778 commit 8500ef0

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

dynamicjava/lib/plt.jar

3.29 KB
Binary file not shown.

dynamicjava/lib/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildlib/*.jar: Binaries used in the build process, but that should not be part
55

66
VERSIONS:
77

8-
plt.jar: plt-20071203-2149
8+
plt.jar: plt-20080506-2028
99
retroweaver-rt-1.2.3.jar: Retroweaver 1.2.3
1010
buildlib/ant-contrib.jar: ANT Contrib 1.0b2
1111
buildlib/astgen.jar: astgen-20060419-1726

dynamicjava/src/edu/rice/cs/dynamicjava/interpreter/TreeCompiler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1329,7 +1329,7 @@ private Object evaluateBlock(BlockStatement block, RuntimeBindings bindings) thr
13291329
return null;
13301330
}
13311331
catch (StatementEvaluator.ReturnException e) {
1332-
return Option.unwrap(e.value(), (Object) null);
1332+
return e.value().unwrap(null);
13331333
}
13341334
catch (WrappedException e) {
13351335
if (e.getCause() instanceof EvaluatorException) {

dynamicjava/src/edu/rice/cs/dynamicjava/symbol/LocalFunction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public Object evaluate(Iterable<Object> args, RuntimeBindings bindings, Options
5353
return null;
5454
}
5555
catch (StatementEvaluator.ReturnException e) {
56-
return Option.unwrap(e.value(), (Object) null);
56+
return e.value().unwrap(null);
5757
}
5858
catch (WrappedException e) {
5959
if (e.getCause() instanceof EvaluatorException) { throw (EvaluatorException) e.getCause(); }

0 commit comments

Comments
 (0)