JintEmptyStatement.cs 438 B

12345678910111213141516
  1. using Esprima.Ast;
  2. namespace Jint.Runtime.Interpreter.Statements
  3. {
  4. internal sealed class JintEmptyStatement : JintStatement<EmptyStatement>
  5. {
  6. public JintEmptyStatement(EmptyStatement statement) : base(statement)
  7. {
  8. }
  9. protected override Completion ExecuteInternal(EvaluationContext context)
  10. {
  11. return new Completion(CompletionType.Normal, null, null, Location);
  12. }
  13. }
  14. }