diff options
author | Jeff Ames | 2008-07-24 15:20:47 +0000 |
---|---|---|
committer | Jeff Ames | 2008-07-24 15:20:47 +0000 |
commit | a4ad6a67b7647e4c321a242851f9d17968227fb2 (patch) | |
tree | e2527d04bf157a2e65f8d42448754c0cebbf3832 /OpenSim/Tests | |
parent | oops...forgot to svn add OSHttpHttpHandler.cs last week. (diff) | |
download | opensim-SC_OLD-a4ad6a67b7647e4c321a242851f9d17968227fb2.zip opensim-SC_OLD-a4ad6a67b7647e4c321a242851f9d17968227fb2.tar.gz opensim-SC_OLD-a4ad6a67b7647e4c321a242851f9d17968227fb2.tar.bz2 opensim-SC_OLD-a4ad6a67b7647e4c321a242851f9d17968227fb2.tar.xz |
Update svn properties. Minor formatting cleanup.
Diffstat (limited to 'OpenSim/Tests')
-rw-r--r-- | OpenSim/Tests/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGeneratorTest.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/OpenSim/Tests/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGeneratorTest.cs b/OpenSim/Tests/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGeneratorTest.cs index 0b07b30..9547b0b 100644 --- a/OpenSim/Tests/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGeneratorTest.cs +++ b/OpenSim/Tests/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGeneratorTest.cs | |||
@@ -684,8 +684,8 @@ default | |||
684 | { | 684 | { |
685 | integer x = 1; | 685 | integer x = 1; |
686 | 686 | ||
687 | if(x) llSay(0, ""Hello""); | 687 | if (x) llSay(0, ""Hello""); |
688 | if(1) | 688 | if (1) |
689 | { | 689 | { |
690 | llSay(0, ""Hi""); | 690 | llSay(0, ""Hi""); |
691 | integer r = 3; | 691 | integer r = 3; |
@@ -790,8 +790,8 @@ default | |||
790 | integer x = 1; | 790 | integer x = 1; |
791 | integer y = 0; | 791 | integer y = 0; |
792 | 792 | ||
793 | if(x && y) llSay(0, ""Hello""); | 793 | if (x && y) llSay(0, ""Hello""); |
794 | if(x || y) | 794 | if (x || y) |
795 | { | 795 | { |
796 | llSay(0, ""Hi""); | 796 | llSay(0, ""Hi""); |
797 | integer r = 3; | 797 | integer r = 3; |
@@ -983,14 +983,14 @@ default | |||
983 | integer x = 1; | 983 | integer x = 1; |
984 | integer y = 0; | 984 | integer y = 0; |
985 | 985 | ||
986 | for(x = 10; x >= 0; x--) | 986 | for (x = 10; x >= 0; x--) |
987 | { | 987 | { |
988 | llOwnerSay(""Launch in T minus "" + x); | 988 | llOwnerSay(""Launch in T minus "" + x); |
989 | IncreaseRocketPower(); | 989 | IncreaseRocketPower(); |
990 | } | 990 | } |
991 | 991 | ||
992 | for(x = 0, y = 6; y > 0 && x != y; x++, y--) llOwnerSay(""Hi "" + x + "", "" + y); | 992 | for (x = 0, y = 6; y > 0 && x != y; x++, y--) llOwnerSay(""Hi "" + x + "", "" + y); |
993 | for(x = 0, y = 6; ! y; x++,y--) llOwnerSay(""Hi "" + x + "", "" + y); | 993 | for (x = 0, y = 6; ! y; x++,y--) llOwnerSay(""Hi "" + x + "", "" + y); |
994 | } | 994 | } |
995 | } | 995 | } |
996 | "; | 996 | "; |