Re: Matt - wxProcess, wxEuphoria, and MakeDoc
- Posted by mattlewis (admin) Sep 03, 2008
- 1136 views
mattlewis said...
Along those lines, I started a new branch where I'm converting stuff based on eu4.0 features.
Here's another thing that makes this easier. It's really a side effect of forward referencing, since the parser can't actually throw an error until it finishes, it can spot multiple typos or missing includes all in one go, so you can go fix up lots of stuff in one shot instead of: Fix. Run, crash. Repeat... Here's an example of the output:
hello_world.exw:21 Errors resolving the following references: ./wx/grid.e (39): sprint ./wx/html.e (86): call_back ./wx/html.e (121): call_back ./wx/media.e (17): WX_LOAD_MEDIA ./wx/media.e (24): WX_PLAY_MEDIA ./wx/media.e (31): WX_PAUSE_MEDIA ./wx/media.e (38): WX_STOP_MEDIA ./wx/media.e (45): WX_SHOW_PLAYER_CONTROLS ./wx/media.e (52): WX_SET_MEDIA_VOLUME ./wx/media.e (59): WX_GET_MEDIA_STATE ./wx/radiobox.e (9): WX_GET_RADIO_SELECTION ./wx/radiobox.e (17): WX_SET_RADIOBOX_SELECTION ./wx/textctrl.e (22): value hello_world.exw (18): wx_puts hello_world.exw (21): set_event_handlerMatt