| 55 | | Sunshade is used to parse PAN compiler output. Regexps appropriate to PAN compiler output must be added, using Window->Preferences->Sunshade->Errorlink in Eclipse. The required regexps are : |
| | 55 | If you have Sunshade installed inside eclipse, then you can hyperlink between errors generated by the pan compiler and the file. To do this you need to add some regular expressions to the Sunshade "Error Link" configuration. Open the Eclipse options panel (using Window->Preferences) and then navigate to the "Sunshade" and then "Error Link" pages. On this page add the following regular expressions: |
| | 56 | {{{ |
| | 57 | \[panc\]\s*DEPRECATED:\s+(.*)\s+\[(\d+):(\d+)\] |
| | 58 | \[([^\[\]]+\.tpl)(?::(\d+)\.(\d+)-\d+\.\d+)\] |
| | 59 | }}} |
| | 60 | The links identified with these expressions will take you to the start of the expression causing the error. Note that the error messages give you the full range of the expression in the format "beginLine.beginChar-endLine.endChar". |
| | 61 | |
| | 62 | ''Note : The regexp above are intended for panc v7 and later. If you are still using panc v6 or before, you need to use a different set of regular expresssions :'' |