4coder/4coder_scope_commands.h

30 lines
534 B
C
Raw Normal View History

/*
4coder_scope_commands.cpp - A set of commands and helpers relevant for scope level navigation and editing.
*/
// TOP
#if !defined(FCODER_SCOPE_COMMANDS_H)
#define FCODER_SCOPE_COMMANDS_H
2019-09-27 23:56:05 +00:00
typedef u32 Find_Scope_Flag;
enum{
2018-09-30 12:14:47 +00:00
FindScope_Parent = 1,
FindScope_NextSibling = 2,
FindScope_EndOfToken = 4,
2019-09-27 23:56:05 +00:00
FindScope_Scope = 8,
2018-09-30 12:14:47 +00:00
FindScope_Paren = 16,
};
2019-02-26 23:17:53 +00:00
typedef i32 Find_Scope_Token_Type;
2018-09-30 12:14:47 +00:00
enum{
FindScopeTokenType_None = 0,
FindScopeTokenType_Open = 1,
FindScopeTokenType_Close = 2,
};
#endif
// BOTTOM