JSErrorChecker.cpp 549 B

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