aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests
diff options
context:
space:
mode:
authorJeff Ames2008-08-07 12:55:46 +0000
committerJeff Ames2008-08-07 12:55:46 +0000
commit0718aa0b7fd7cb3bb42d36b37f79d8d6cfc725bc (patch)
treeba6b41e2e10e717ed8743a035c10849db2f0cb14 /OpenSim/Tests
parentUpdate svn properties. (diff)
downloadopensim-SC_OLD-0718aa0b7fd7cb3bb42d36b37f79d8d6cfc725bc.zip
opensim-SC_OLD-0718aa0b7fd7cb3bb42d36b37f79d8d6cfc725bc.tar.gz
opensim-SC_OLD-0718aa0b7fd7cb3bb42d36b37f79d8d6cfc725bc.tar.bz2
opensim-SC_OLD-0718aa0b7fd7cb3bb42d36b37f79d8d6cfc725bc.tar.xz
Minor formatting cleanup.
Diffstat (limited to 'OpenSim/Tests')
-rw-r--r--OpenSim/Tests/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGeneratorTest.cs16
1 files changed, 8 insertions, 8 deletions
diff --git a/OpenSim/Tests/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGeneratorTest.cs b/OpenSim/Tests/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGeneratorTest.cs
index 427390b..a6b07bf 100644
--- a/OpenSim/Tests/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGeneratorTest.cs
+++ b/OpenSim/Tests/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGeneratorTest.cs
@@ -1401,7 +1401,7 @@ default
1401{ 1401{
1402 state_entry() 1402 state_entry()
1403 { 1403 {
1404 while(1<0); 1404 while (1<0);
1405 } 1405 }
1406}"; 1406}";
1407 1407
@@ -1426,7 +1426,7 @@ default
1426 state_entry() 1426 state_entry()
1427 { 1427 {
1428 do; 1428 do;
1429 while(1<0); 1429 while (1<0);
1430 } 1430 }
1431}"; 1431}";
1432 1432
@@ -1451,7 +1451,7 @@ default
1451{ 1451{
1452 state_entry() 1452 state_entry()
1453 { 1453 {
1454 if(1<0); 1454 if (1<0);
1455 } 1455 }
1456}"; 1456}";
1457 1457
@@ -1475,7 +1475,7 @@ default
1475{ 1475{
1476 state_entry() 1476 state_entry()
1477 { 1477 {
1478 if(1<0); 1478 if (1<0);
1479 else; 1479 else;
1480 } 1480 }
1481}"; 1481}";
@@ -1502,7 +1502,7 @@ default
1502{ 1502{
1503 state_entry() 1503 state_entry()
1504 { 1504 {
1505 for(x = 4; 1<0; x += 2); 1505 for (x = 4; 1<0; x += 2);
1506 } 1506 }
1507}"; 1507}";
1508 1508
@@ -1528,13 +1528,13 @@ default
1528 { 1528 {
1529 integer x; 1529 integer x;
1530 1530
1531 while(x = 14) llOwnerSay(""x is: "" + (string) x); 1531 while (x = 14) llOwnerSay(""x is: "" + (string) x);
1532 1532
1533 if(x = 24) llOwnerSay(""x is: "" + (string) x); 1533 if (x = 24) llOwnerSay(""x is: "" + (string) x);
1534 1534
1535 do 1535 do
1536 llOwnerSay(""x is: "" + (string) x); 1536 llOwnerSay(""x is: "" + (string) x);
1537 while(x = 44); 1537 while (x = 44);
1538 } 1538 }
1539}"; 1539}";
1540 1540