LeviLamina
Loading...
Searching...
No Matches
JSToken.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct JSToken {
6public:
7 // member variables
8 // NOLINTBEGIN
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
17 JSToken& operator=(JSToken const&);
18 JSToken(JSToken const&);
19 JSToken();
20};
Definition JSToken.h:5
Definition Alias.h:14