JSErrorChecker.cpp 465 B

12345678910111213141516171819202122232425
  1. // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
  2. // Please see LICENSE.md in repository root for license information
  3. // https://github.com/AtomicGameEngine/AtomicGameEngine
  4. #include <Atomic/Core/Context.h>
  5. #include "JSErrorChecker.h"
  6. namespace AtomicEditor
  7. {
  8. /// Construct.
  9. JSErrorChecker::JSErrorChecker(Context* context, duk_context *ctx) :
  10. Object(context),
  11. ctx_(ctx)
  12. {
  13. }
  14. /// Destruct.
  15. JSErrorChecker::~JSErrorChecker()
  16. {
  17. }
  18. }