Skip to content
This repository has been archived by the owner on Dec 1, 2024. It is now read-only.

Commit

Permalink
automatic codegen update
Browse files Browse the repository at this point in the history
  • Loading branch information
fredemmott committed Dec 14, 2018
1 parent dc021aa commit 6b9addf
Show file tree
Hide file tree
Showing 34 changed files with 824 additions and 211 deletions.
12 changes: 11 additions & 1 deletion codegen/editable_node_from_json.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* This file is generated. Do not modify it manually!
*
* @generated SignedSource<<7cde6a156c9f9fb5a4f583149299f581>>
* @generated SignedSource<<b3e5dda58e32eed54c8d5ade7868651d>>
*/
namespace Facebook\HHAST\__Private;
use namespace Facebook\HHAST;
Expand Down Expand Up @@ -140,6 +140,9 @@ function editable_node_from_json(
);
case 'compound_statement':
return HHAST\CompoundStatement::fromJSON($json, $file, $offset, $source);
case 'concurrent_statement':
return
HHAST\ConcurrentStatement::fromJSON($json, $file, $offset, $source);
case 'conditional_expression':
return
HHAST\ConditionalExpression::fromJSON($json, $file, $offset, $source);
Expand Down Expand Up @@ -332,6 +335,13 @@ function editable_node_from_json(
case 'methodish_declaration':
return
HHAST\MethodishDeclaration::fromJSON($json, $file, $offset, $source);
case 'methodish_trait_resolution':
return HHAST\MethodishTraitResolution::fromJSON(
$json,
$file,
$offset,
$source,
);
case 'namespace_body':
return HHAST\NamespaceBody::fromJSON($json, $file, $offset, $source);
case 'namespace_declaration':
Expand Down
3 changes: 2 additions & 1 deletion codegen/editable_token_from_data.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* This file is generated. Do not modify it manually!
*
* @generated SignedSource<<7e6751d96c6b659722a49b478b4fd56a>>
* @generated SignedSource<<9b4379299c3c2d0f112d1a1de1ec4b39>>
*/
namespace Facebook\HHAST\__Private;
use namespace Facebook\HHAST;
Expand Down Expand Up @@ -51,6 +51,7 @@ classname<HHAST\EditableTokenWithVariableText>,
'class' => HHAST\ClassToken::class,
'classname' => HHAST\ClassnameToken::class,
'clone' => HHAST\CloneToken::class,
'concurrent' => HHAST\ConcurrentToken::class,
'const' => HHAST\ConstToken::class,
'__construct' => HHAST\ConstructToken::class,
'continue' => HHAST\ContinueToken::class,
Expand Down
Loading

0 comments on commit 6b9addf

Please sign in to comment.