Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F7112976
ArcanistToStringExceptionXHPASTLinterRule.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
987 B
Referenced Files
None
Subscribers
None
ArcanistToStringExceptionXHPASTLinterRule.php
View Options
<?php
final
class
ArcanistToStringExceptionXHPASTLinterRule
extends
ArcanistXHPASTLinterRule
{
const
ID
=
67
;
public
function
getLintName
()
{
return
pht
(
'Throwing Exception in %s Method'
,
'__toString'
);
}
public
function
process
(
XHPASTNode
$root
)
{
$methods
=
$root
->
selectDescendantsOfType
(
'n_METHOD_DECLARATION'
);
foreach
(
$methods
as
$method
)
{
$name
=
$method
->
getChildOfType
(
2
,
'n_STRING'
)
->
getConcreteString
();
if
(
$name
!=
'__toString'
)
{
continue
;
}
$statements
=
$method
->
getChildByIndex
(
5
);
if
(
$statements
->
getTypeName
()
!=
'n_STATEMENT_LIST'
)
{
continue
;
}
$throws
=
$statements
->
selectDescendantsOfType
(
'n_THROW'
);
foreach
(
$throws
as
$throw
)
{
$this
->
raiseLintAtNode
(
$throw
,
pht
(
'It is not possible to throw an %s from within the %s method.'
,
'Exception'
,
'__toString'
));
}
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Jul 4, 08:27 (5 h, 32 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
797749
Default Alt Text
ArcanistToStringExceptionXHPASTLinterRule.php (987 B)
Attached To
Mode
R118 Arcanist - fork
Attached
Detach File
Event Timeline
Log In to Comment