2024-01-14 06:11:26 -05:00
|
|
|
// Copyright 2024 xensik. All rights reserved.
|
2023-05-13 13:24:57 -04:00
|
|
|
//
|
|
|
|
// Use of this source code is governed by a GNU GPLv3 license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace xsk::arc
|
|
|
|
{
|
|
|
|
|
|
|
|
enum class spacing : u8
|
|
|
|
{
|
|
|
|
none = 0, // no space between tokens
|
|
|
|
null = 1, // token just after new line
|
|
|
|
back = 2, // token after space
|
|
|
|
empty = 4, // token after new line + space
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace xsk::arc
|