Ignore:
Timestamp:
06/05/08 17:05:48 (16 years ago)
Author:
ra33
Message:

Fixed some stuff with the SIMPLE debugger
Refactored the way the interpretor works to make it easier to give better error messages.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/gui/Frame.java

    r86 r87  
    4646        private String _frameset = null;
    4747
     48        private boolean _throwsException = false;
     49       
    4850        private int _number = -1;
    4951
     
    344346                for (Item i : items) {
    345347                        if (i instanceof Text && i.getX() < UserSettings.TitlePosition
    346                                         && i.getY() < UserSettings.TitlePosition && i.getY() > 0)
     348                                        && i.getY() < UserSettings.TitlePosition /*&& i.getY() > 0*/)
    347349                                return (Text) i;
    348350                }
     
    16581660                return 1 + (backup == null ? 0 : backup.getCometLength());
    16591661        }
     1662
     1663        public void setThrowsException(boolean b) {
     1664                _throwsException = b;
     1665        }
     1666       
     1667        public boolean getThrowsException() {
     1668                return _throwsException;
     1669        }
    16601670}
Note: See TracChangeset for help on using the changeset viewer.