JSBSymbol.h 674 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. #pragma once
  8. #include <Atomic/Container/Str.h>
  9. using namespace Atomic;
  10. namespace ToolCore
  11. {
  12. class JSBSymbol
  13. {
  14. public:
  15. JSBSymbol() : sourceLocation_(0), sourceLine_(0), sourceColumn_(0)
  16. {
  17. }
  18. String fileName_;
  19. unsigned sourceLocation_;
  20. // The line number is 1-based
  21. unsigned sourceLine_;
  22. // The column number is 1-based
  23. unsigned sourceColumn_;
  24. };
  25. }