FunctionShim.cs 429 B

12345678910111213141516
  1. using Jint.Runtime.Environments;
  2. namespace Jint.Native.Function
  3. {
  4. public sealed class FunctionShim : FunctionInstance
  5. {
  6. public FunctionShim(Engine engine, string[] parameters, LexicalEnvironment scope) : base(engine, parameters, scope, false)
  7. {
  8. }
  9. public override JsValue Call(JsValue thisObject, JsValue[] arguments)
  10. {
  11. return Undefined.Instance;
  12. }
  13. }
  14. }