codegen/tokens/DoubleQuotedStringLiteralToken.hack (14 lines of code) (raw):
/**
* This file is generated. Do not modify it manually!
*
* @generated SignedSource<<24b7354c05dd66df29eda67c190b8b9e>>
*/
namespace Facebook\HHAST;
final class DoubleQuotedStringLiteralToken
extends TokenWithVariableText
implements IStringLiteral {
const string KIND = 'double_quoted_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);
}
}