Directory src/slogo/parser/

Directory Created:
2016-11-15 15:00
Total Files:
42
Deleted Files:
5
Lines of Code:
1739

[root]/src/slogo/parser
                directory in repo token (54 files, 1228 lines)

Lines of Code

src/slogo/parser/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 133 (100.0%) 1709 (100.0%) 12.8
troises 103 (77.4%) 1379 (80.7%) 13.3
mccaffreyk 21 (15.8%) 174 (10.2%) 8.2
joshir 7 (5.3%) 154 (9.0%) 22.0
cardene 2 (1.5%) 2 (0.1%) 1.0

Most Recent Commits

troises 2016-12-15 17:14 Rev.: 1796

SO MANY JAVADOCS

275 lines of code changed in 30 files:

  • src/slogo/parser: BKParser.java (+7 -3), CSParser.java (+11), CleanParser.java (+11 -1), DifferenceParser.java (+7 -3), EqualsParser.java (+10 -2), FDParser.java (+8 -6), GreaterParser.java (+10 -2), HTParser.java (+11 -1), HeadingParser.java (+9 -2), HomeParser.java (+7 -5), IfParser.java (+7 -3), LTParser.java (+8 -6), LessParser.java (+10 -5), MinusParser.java (+11 -1), NotEqualParser.java (+10 -2), PDParser.java (+11 -3), PUParser.java (+10 -3), ProductParser.java (+8), QuotientParser.java (+8), RTParser.java (+8 -6), RemainderParser.java (+9), STParser.java (+13 -1), SetXParser.java (+8 -3), SetXYParser.java (+10 -8), SetYParser.java (+7 -3), SumParser.java (+8 -3), ToParser.java (+12 -1), TowardsParser.java (+10 -2), XCorParser.java (+7 -3), YCorParser.java (+9 -5)
troises 2016-12-15 14:43 Rev.: 1783

fixed clean and cs

2 lines of code changed in 1 file:

  • src/slogo/parser: CleanParser.java (+2 -1)
troises 2016-12-15 13:02 Rev.: 1774

updated

4 lines of code changed in 5 files:

  • src/slogo/parser: CSParser.java (+1), InstructionParser.java (+3 -10), PenDownParser.java (del), PenUpParser.java (del), instructions.prop (-4)
mccaffreyk 2016-12-14 20:43 Rev.: 1736

I fixed a very tedious error with pen up/pen down. When the pen was lifted and then re-placed, a line formed in the area that the turtle had been moving over, connecting
the point where the pen was lifted to its current position. Now, what was blank before stays blank.

4 lines of code changed in 1 file:

  • src/slogo/parser: PDParser.java (+4)
mccaffreyk 2016-12-14 19:41 Rev.: 1721

Completed the commands for PENUP, PENDOWN, PU, and PD, so that they correctly interact with turtle field.

3 lines of code changed in 3 files:

  • src/slogo/parser: InstructionParser.java (+1), PDParser.java (+1 -2), PUParser.java (+1 -2)
mccaffreyk 2016-12-14 19:23 Rev.: 1719

Some of the new commands now work. Others do not.

1 lines of code changed in 1 file:

  • src/slogo/parser: instructions.prop (+1 -1)
troises 2016-12-14 19:13 Rev.: 1716

fixed pens

38 lines of code changed in 4 files:

  • src/slogo/parser: PENDOWNParser.java (del), PenDownParser.java (new 33), PenUpParser.java (+3 -3), instructions.prop (+2 -2)
mccaffreyk 2016-12-14 18:52 Rev.: 1715

Tried yet failed to completely fix the misnamed token error. When I try to save instructions with a new name, eclipse prevents me from doing so.

2 lines of code changed in 1 file:

  • src/slogo/parser: instructions.prop (+2 -3)
mccaffreyk 2016-12-14 18:34 Rev.: 1713

I completed PENDOWN, but am getting a single error. I will try to fix this error and then re-commit the program.

12 lines of code changed in 3 files:

  • src/slogo/parser: PDParser.java (+6 -4), PUParser.java (+3), PenUpParser.java (+3 -3)
mccaffreyk 2016-12-14 18:17 Rev.: 1712

I appear to have fixed the problem for PENUP and PU by making instruction classes for both instead of just PENUP.
I also completed some but not all of PENDOWN.

72 lines of code changed in 5 files:

  • src/slogo/parser: PENDOWNParser.java (new 34), PUParser.java (+28 -22), alias.prop (+4 -1), instructions.prop (+6), package.html (del)
troises 2016-12-14 18:05 Rev.: 1711

fixed pen up

147 lines of code changed in 13 files:

  • src/slogo/parser: CSParser.java (new 22), HTParser.java (+1 -1), IfParser.java (+1 -1), InstructionParser.java (+2 -2), LessParser.java (+1 -2), PDParser.java (new 23), PENUPParser.java (del), PUParser.java (+23 -22), PenUpParser.java (new 34), STParser.java (+1 -1), ToParser.java (new 33), TowardsParser.java (+1 -1), instructions.prop (+5 -1)
mccaffreyk 2016-12-14 17:50 Rev.: 1710

I added PU as a token and also added the symbols PU and PENUP to both the two textfiles in parser and as valid instructions. However, I
am still getting the error "not a valid command".

27 lines of code changed in 4 files:

  • src/slogo/parser: InstructionParser.java (+1 -1), PUParser.java (new 22), alias.prop (+2 -1), instructions.prop (+2 -1)
mccaffreyk 2016-12-14 17:32 Rev.: 1709

I tried implementing the PENUP command but failed to make it register as valid.

40 lines of code changed in 2 files:

  • src/slogo/parser: InstructionParser.java (+6 -1), PENUPParser.java (new 34)
cardene 2016-12-13 15:07 Rev.: 1622

major changes on error handling. added throws exception

2 lines of code changed in 1 file:

  • src/slogo/parser: InstructionParser.java (+2 -1)
troises 2016-12-12 18:24 Rev.: 1602

changes for workspaces

272 lines of code changed in 11 files:

  • src/slogo/parser: AliasNames.java (new 61), CleanParser.java (new 21), HTParser.java (new 24), HeadingParser.java (new 27), InstructionNames.java (+2), InstructionParser.java (+34 -1), MinusParser.java (new 27), STParser.java (new 24), TowardsParser.java (new 30), alias.prop (new 12), instructions.prop (+10 -1)
troises 2016-12-09 23:18 Rev.: 1447

adds Booleans

101 lines of code changed in 5 files:

  • src/slogo/parser: EqualsParser.java (new 32), GreaterParser.java (new 32), LessParser.java (+2 -2), NotEqualParser.java (new 31), instructions.prop (+4 -1)
troises 2016-12-09 22:06 Rev.: 1400

you can now use math operations to move

46 lines of code changed in 2 files:

  • src/slogo/parser: LessParser.java (new 44), instructions.prop (+2 -1)
troises 2016-12-09 20:51 Rev.: 1373

added ycor

40 lines of code changed in 2 files:

  • src/slogo/parser: YCorParser.java (new 37), instructions.prop (+3 -1)
troises 2016-12-09 14:30 Rev.: 1320

added x cor

38 lines of code changed in 1 file:

  • src/slogo/parser: XCorParser.java (new 38)
mccaffreyk 2016-12-09 00:47 Rev.: 1269

I changed load so that it uses the button and J File Chooser instead of forcing the user to enter a file directory. I also created an error message for when the user clicks the load
button but does not choose a file, and removed the old messages for load. Finally, I split the old buttonPanel into two new panels: eastButtonPanel and westButtonPanel, and changed the commandTextField so that it stretches across the empty space in the GUI.

13 lines of code changed in 1 file:

  • src/slogo/parser: InstructionParser.java (+13 -5)
joshir 2016-12-07 15:34 Rev.: 1183

Created Home, HomeToken, and HomeParser classes. Added Home to instructions. Turtle now goes to default position when asked to go home.

31 lines of code changed in 2 files:

  • src/slogo/parser: HomeParser.java (new 29), instructions.prop (+2 -1)
cardene 2016-12-07 14:35 Rev.: 1167

intermediate implementation

0 lines of code changed in 1 file:

  • src/slogo/parser: instructions.prop (-1)
troises 2016-12-06 23:05 Rev.: 1095

removed home

0 lines of code changed in 1 file:

  • src/slogo/parser: HomeParser.java (del)
troises 2016-12-02 22:19 Rev.: 861

added remainder

37 lines of code changed in 4 files:

  • src/slogo/parser: ProductParser.java (-1), QuotientParser.java (+1 -1), RemainderParser.java (new 34), instructions.prop (+2 -1)
troises 2016-12-02 22:10 Rev.: 852

added quotient

36 lines of code changed in 2 files:

  • src/slogo/parser: QuotientParser.java (new 34), instructions.prop (+2 -1)
troises 2016-12-02 21:56 Rev.: 851

added product

35 lines of code changed in 2 files:

  • src/slogo/parser: ProductParser.java (new 33), instructions.prop (+2 -1)
troises 2016-12-02 21:36 Rev.: 850

added difference

44 lines of code changed in 2 files:

  • src/slogo/parser: DifferenceParser.java (new 42), instructions.prop (+2 -1)
troises 2016-12-02 19:58 Rev.: 849

added setXY

45 lines of code changed in 2 files:

  • src/slogo/parser: SetXYParser.java (new 43), instructions.prop (+2 -1)
troises 2016-12-02 18:05 Rev.: 847

added sum and it kind of works

46 lines of code changed in 3 files:

  • src/slogo/parser: HomeParser.java (+2 -2), SumParser.java (new 42), instructions.prop (+2 -1)
troises 2016-12-01 19:30 Rev.: 803

added set y

41 lines of code changed in 3 files:

  • src/slogo/parser: SetXParser.java (+2 -2), SetYParser.java (new 38), instructions.prop (+1)
troises 2016-12-01 19:20 Rev.: 800

added set x

40 lines of code changed in 3 files:

  • src/slogo/parser: HomeParser.java (new), SetXParser.java (new 37), instructions.prop (+3 -1)
joshir 2016-11-30 15:55 Rev.: 787

Created LT, LTToken, and LTParser classes. Added LT to instructions. Turtle now turns left.

42 lines of code changed in 2 files:

  • src/slogo/parser: LTParser.java (new 40), instructions.prop (+2 -1)
joshir 2016-11-30 15:33 Rev.: 786

Created RT, RTToken, and RTParser classes. Added RT to instructions. Turtle now turns right.

41 lines of code changed in 2 files:

  • src/slogo/parser: RTParser.java (new 40), instructions.prop (+1)
troises 2016-11-30 14:54 Rev.: 783

fixed back

1 lines of code changed in 1 file:

  • src/slogo/parser: instructions.prop (+1)
troises 2016-11-30 13:13 Rev.: 762

fixed captialization

1 lines of code changed in 1 file:

  • src/slogo/parser: IfParser.java (+1 -2)
troises 2016-11-29 23:37 Rev.: 710

Adds classes for back but doesnt work yet!

40 lines of code changed in 2 files:

  • src/slogo/parser: BKParser.java (new 39), FDParser.java (+1 -1)
troises 2016-11-28 19:40 Rev.: 599

The commit contains the FD token, FD instruction and new Workspace class. The FD instruction still needs work.

1 lines of code changed in 1 file:

  • src/slogo/parser: instructions.prop (+1)
joshir 2016-11-28 14:57 Rev.: 581

Created the class FDParser.java.

40 lines of code changed in 1 file:

  • src/slogo/parser: FDParser.java (new 40)
sprenkle 2016-11-27 14:57 Rev.: 542

Removed unnecessary casting.

1 lines of code changed in 1 file:

  • src/slogo/parser: InstructionParser.java (+1 -1)
troises 2016-11-23 22:19 Rev.: 533

Added the if parser from class

49 lines of code changed in 2 files:

  • src/slogo/parser: IfParser.java (new 48), instructions.prop (+1)

(1 more)

Generated by StatSVN 0.7.0