Skip to content

Commit

Permalink
Update stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
ngallagher committed Aug 5, 2018
1 parent 05fe146 commit d0d21f5
Show file tree
Hide file tree
Showing 6 changed files with 62,460 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
maven.home=C:\\Program Files\\Maven\\3.3.3
ant.home=C:\\Program Files\\Ant\\1.9.3
maven.home=C:\\Work\\tools\\maven\\apache-maven-3.5.4
ant.home=C:\\Work\\tools\\ant\\apache-ant-1.10.5
java.home=C:\\Program Files\\Java\\jdk1.8.0_60
build.version=1.3.5
4 changes: 4 additions & 0 deletions build.properties~
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
maven.home=C:\\Work\\tools\\maven\\apache-maven-3.5.4
ant.home=C:\\Work\\tools\\ant\apache-ant-1.10.5
java.home=C:\\Program Files\\Java\\jdk1.8.0_181
build.version=1.3.5
62,450 changes: 62,450 additions & 0 deletions log/snapd.log

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package org.snapscript.studio.index.tree;

import static org.snapscript.core.ModifierType.CLASS;
import static org.snapscript.core.variable.Value.NULL;

import org.snapscript.core.Compilation;
import org.snapscript.core.Evaluation;
Expand Down Expand Up @@ -46,7 +47,7 @@ public IndexConstraint(Evaluation reference) {
@Override
public Type getType(Scope scope) {
try {
Value value = reference.evaluate(scope, null);
Value value = reference.evaluate(scope, NULL);
Module module = scope.getModule();
String entry = value.getValue();

Expand Down
2 changes: 1 addition & 1 deletion snap-studio/work/demo/games/src/mario/MarioGame.snap
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ func start(scale) {
}
}

start(3);
start(2);
Original file line number Diff line number Diff line change
Expand Up @@ -344,5 +344,5 @@ function start(path) {
}

var start = System.currentTimeMillis();
start("c:\\temp\\raytrace.png");
start("c:\\Work\\temp\\raytrace.png");
println(System.currentTimeMillis()-start);

0 comments on commit d0d21f5

Please sign in to comment.