Page MenuHomePhabricator

Improve PHP7 error reporting for include-time syntax errors
ClosedPublic

Authored by epriestley on Nov 28 2017, 2:05 PM.
Tags
None
Referenced Files
F15195802: D18797.diff
Sat, Feb 22, 3:18 PM
Unknown Object (File)
Sun, Feb 9, 12:03 AM
Unknown Object (File)
Sun, Feb 2, 7:50 AM
Unknown Object (File)
Jan 23 2025, 2:09 PM
Unknown Object (File)
Jan 21 2025, 11:00 AM
Unknown Object (File)
Jan 3 2025, 5:50 PM
Unknown Object (File)
Dec 30 2024, 2:58 PM
Unknown Object (File)
Dec 29 2024, 11:48 PM
Subscribers
None

Details

Summary

Ref T12101. Ref T12855. Ref T12190.

In PHP7, include_once may raise a Throwable which has a useless message and stack trace (neither point at the actual file or line where the error occurs).

Catch and mangle these so they're useful. This upgrades the message from syntax error: unexpected X so it has a file and line number.

Test Plan

Screen Shot 2017-11-28 at 6.03.12 AM.png (1×1 px, 220 KB)

Diff Detail

Repository
rPHU libphutil
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

This revision is now accepted and ready to land.Nov 28 2017, 5:54 PM

The specific error / reproduction case here was something like $this->someMethod(): (instead of ...();) if that's helpful to some future archaeologist.

This revision was automatically updated to reflect the committed changes.