remove coroutine keyword
commit041c576fb7404fed42e9678627f9ab446ea27885
authorSteve Cao <shiqicao@fb.com>
Sat, 8 Aug 2020 03:07:31 +0000 (7 20:07 -0700)
committerFacebook GitHub Bot <facebook-github-bot@users.noreply.github.com>
Sat, 8 Aug 2020 03:09:24 +0000 (7 20:09 -0700)
tree68a3bb4fda0490b203c65896f8b0ae4ee0c0be80
parentec00bf70f5a03964691734baafca99bd0aa22909
remove coroutine keyword

Summary: remove coroutine keyword from syntax

Reviewed By: dabek

Differential Revision: D22878070

fbshipit-source-id: 9bee145cd3fdcd277fea7ff394a82efda77eba77
89 files changed:
hphp/hack/src/decl/direct_decl_smart_constructors.rs
hphp/hack/src/decl/direct_decl_smart_constructors_generated.rs
hphp/hack/src/facts/facts_smart_constructors_generated.rs
hphp/hack/src/hackfmt/hack_format.ml
hphp/hack/src/parser/core/expression_parser.rs
hphp/hack/src/parser/core/type_parser.rs
hphp/hack/src/parser/coroutine/coroutine_lowerer.ml
hphp/hack/src/parser/coroutine/coroutine_method_lowerer.ml
hphp/hack/src/parser/coroutine/coroutine_suspend_rewriter.ml
hphp/hack/src/parser/coroutine/coroutine_syntax.ml
hphp/hack/src/parser/coroutine_smart_constructors.rs
hphp/hack/src/parser/coroutine_smart_constructors_generated.rs
hphp/hack/src/parser/decl_mode_smart_constructors.rs
hphp/hack/src/parser/decl_mode_smart_constructors_generated.rs
hphp/hack/src/parser/flatten_smart_constructors.rs
hphp/hack/src/parser/full_fidelity_syntax.ml
hphp/hack/src/parser/full_fidelity_syntax_type.ml
hphp/hack/src/parser/full_fidelity_validated_syntax.ml
hphp/hack/src/parser/js/full_fidelity_schema.json
hphp/hack/src/parser/lowerer/lowerer.rs
hphp/hack/src/parser/minimal_smart_constructors.rs
hphp/hack/src/parser/ocaml_syntax_generated.rs
hphp/hack/src/parser/positioned_smart_constructors.rs
hphp/hack/src/parser/rust_parser_errors.rs
hphp/hack/src/parser/schema/full_fidelity_schema.ml
hphp/hack/src/parser/schema/schema_definition.ml
hphp/hack/src/parser/smart_constructors/coroutine_smart_constructor.ml
hphp/hack/src/parser/smart_constructors/declModeSmartConstructors.ml
hphp/hack/src/parser/smart_constructors_generated.rs
hphp/hack/src/parser/smart_constructors_wrappers.rs
hphp/hack/src/parser/syntax_generated.rs
hphp/hack/src/parser/syntax_sig.ml
hphp/hack/src/parser/syntax_smart_constructors_generated.rs
hphp/hack/src/parser/syntax_type.rs
hphp/hack/src/parser/verify_smart_constructors_generated.rs
hphp/hack/test/decl/functions.php
hphp/hack/test/decl/functions.php.exp
hphp/hack/test/full_fidelity/cases/atted_attribute_syntax/test_no_mixed_syntax_same_decl.php.json.exp
hphp/hack/test/full_fidelity/cases/await_as_an_expression/await_as_an_expression_assignment_inside_lambda.php.json.exp
hphp/hack/test/full_fidelity/cases/await_as_an_expression/await_as_an_expression_lambda.php.json.exp
hphp/hack/test/full_fidelity/cases/concurrent/concurrent_nested_with_async_closure_1.php.json.exp
hphp/hack/test/full_fidelity/cases/concurrent/concurrent_nested_with_async_closure_2.php.json.exp
hphp/hack/test/full_fidelity/cases/concurrent/error/concurrent_nested_with_async_closure_1.php.json.exp
hphp/hack/test/full_fidelity/cases/error_recovery1.php.json.exp
hphp/hack/test/full_fidelity/cases/keyword_as_class_allowed.php
hphp/hack/test/full_fidelity/cases/keyword_as_class_allowed.php.errors.exp
hphp/hack/test/full_fidelity/cases/keyword_as_class_allowed.php.json.exp
hphp/hack/test/full_fidelity/cases/keyword_as_class_unexpected.php.json.exp
hphp/hack/test/full_fidelity/cases/keyword_as_function_allowed.php
hphp/hack/test/full_fidelity/cases/keyword_as_function_allowed.php.errors.exp
hphp/hack/test/full_fidelity/cases/keyword_as_function_allowed.php.json.exp
hphp/hack/test/full_fidelity/cases/keyword_as_function_unexpected.php.json.exp
hphp/hack/test/full_fidelity/cases/lambda_default_args/array_non_static.php.json.exp
hphp/hack/test/full_fidelity/cases/lambda_default_args/await_expression.php.json.exp
hphp/hack/test/full_fidelity/cases/lambda_default_args/call_in_static_vec.php.json.exp
hphp/hack/test/full_fidelity/cases/lambda_default_args/call_in_static_vec_like_array.php.json.exp
hphp/hack/test/full_fidelity/cases/lambda_default_args/default_borrowed_variable.php.json.exp
hphp/hack/test/full_fidelity/cases/lambda_default_args/default_local_variable.php.json.exp
hphp/hack/test/full_fidelity/cases/lambda_default_args/func_arg.php.json.exp
hphp/hack/test/full_fidelity/cases/lambda_default_args/list_expression.php.json.exp
hphp/hack/test/full_fidelity/cases/lambda_default_args/list_non_static.php.json.exp
hphp/hack/test/full_fidelity/cases/lambda_default_args/tuple_as_constant.php.json.exp
hphp/hack/test/full_fidelity/cases/lambda_default_args/yield_expression.php.json.exp
hphp/hack/test/full_fidelity/cases/test_awaitable_creation.php.json.exp
hphp/hack/test/full_fidelity/cases/test_closure_type.php.json.exp
hphp/hack/test/full_fidelity/cases/test_errors_not_strict.php.json.exp
hphp/hack/test/full_fidelity/cases/test_errors_strict.php.json.exp
hphp/hack/test/full_fidelity/cases/test_inout_params.php.json.exp
hphp/hack/test/full_fidelity/cases/test_inout_params_errors.php.json.exp
hphp/hack/test/full_fidelity/cases/test_lambda_no_typehints_errors.php.json.exp
hphp/hack/test/full_fidelity/cases/test_lambda_variadic_errors.php.json.exp
hphp/hack/test/full_fidelity/cases/test_like_types.php.json.exp
hphp/hack/test/full_fidelity/cases/test_statement_errors.php.json.exp
hphp/hack/test/full_fidelity/cases/test_using.php.json.exp
hphp/hack/test/full_fidelity/cases/unset_as_expression.php.json.exp
hphp/hack/test/hackfmt/tests/async_coroutine_function1.php [deleted file]
hphp/hack/test/hackfmt/tests/async_coroutine_function1.php.exp [deleted file]
hphp/hack/test/hackfmt/tests/coroutine_anon_function1.php [deleted file]
hphp/hack/test/hackfmt/tests/coroutine_anon_function1.php.exp [deleted file]
hphp/hack/test/hackfmt/tests/coroutine_block1.php [deleted file]
hphp/hack/test/hackfmt/tests/coroutine_block1.php.exp [deleted file]
hphp/hack/test/hackfmt/tests/coroutine_function1.php [deleted file]
hphp/hack/test/hackfmt/tests/coroutine_function1.php.exp [deleted file]
hphp/hack/test/hackfmt/tests/coroutine_lambda1.php [deleted file]
hphp/hack/test/hackfmt/tests/coroutine_lambda1.php.exp [deleted file]
hphp/hack/test/hackfmt/tests/coroutine_lambda2.php [deleted file]
hphp/hack/test/hackfmt/tests/coroutine_lambda2.php.exp [deleted file]
hphp/hack/test/hackfmt/tests/coroutine_lambda3.php [deleted file]
hphp/hack/test/hackfmt/tests/coroutine_lambda3.php.exp [deleted file]