codegen/tokens/XHPStringLiteralToken.hack (12 lines of code) (raw):

/** * This file is generated. Do not modify it manually! * * @generated SignedSource<<c05bf88ba5d87572d4c23139b1709057>> */ namespace Facebook\HHAST; final class XHPStringLiteralToken extends TokenWithVariableText { const string KIND = 'XHP_string_literal'; public function __construct( ?NodeList<Trivia> $leading, ?NodeList<Trivia> $trailing, string $text, ?__Private\SourceRef $source_ref = null, ) { parent::__construct($leading, $trailing, $text, $source_ref); } }