JSErrorChecker.cpp 491 B

1234567891011121314151617181920212223242526
  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 "AtomicEditor.h"
  5. #include <Atomic/Core/Context.h>
  6. #include "JSErrorChecker.h"
  7. namespace AtomicEditor
  8. {
  9. /// Construct.
  10. JSErrorChecker::JSErrorChecker(Context* context, duk_context *ctx) :
  11. Object(context),
  12. ctx_(ctx)
  13. {
  14. }
  15. /// Destruct.
  16. JSErrorChecker::~JSErrorChecker()
  17. {
  18. }
  19. }