summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/src/align_asm_colon.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2022-05-06 13:43:02 +0900
committerMichele Calgaro <[email protected]>2022-05-06 13:49:57 +0900
commit80a31d6c8a114799dc5284086ffce2e9be34c50e (patch)
tree1719891657e76c04f063f5ff7b5fdf63d9e562c3 /debian/uncrustify-trinity/uncrustify-trinity-0.75.0/src/align_asm_colon.cpp
parente6ba08c3b21cdb14ee3a97b5d584759a4597b54b (diff)
downloadextra-dependencies-80a31d6c8a114799dc5284086ffce2e9be34c50e.tar.gz
extra-dependencies-80a31d6c8a114799dc5284086ffce2e9be34c50e.zip
uncrustify-trinity: updated based on upstream version 0.75.0
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.75.0/src/align_asm_colon.cpp')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.75.0/src/align_asm_colon.cpp62
1 files changed, 62 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/src/align_asm_colon.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/src/align_asm_colon.cpp
new file mode 100644
index 00000000..a04121b2
--- /dev/null
+++ b/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/src/align_asm_colon.cpp
@@ -0,0 +1,62 @@
+/**
+ * @file align_asm_colon.cpp
+ *
+ * @author Guy Maurel
+ * split from align.cpp
+ * @author Ben Gardner
+ * @license GPL v2+
+ */
+
+#include "align_asm_colon.h"
+
+#include "align_stack.h"
+#include "chunk.h"
+
+
+void align_asm_colon(void)
+{
+ LOG_FUNC_ENTRY();
+
+ bool did_nl;
+ AlignStack cas; // for the colons
+
+ cas.Start(4);
+
+ Chunk *pc = Chunk::GetHead();
+
+ while (pc->IsNotNullChunk())
+ {
+ if (chunk_is_not_token(pc, CT_ASM_COLON))
+ {
+ pc = pc->GetNext();
+ continue;
+ }
+ cas.Reset();
+
+ pc = pc->GetNextNcNnl(E_Scope::PREPROC);
+ size_t level = pc ? pc->level : 0;
+ did_nl = true;
+
+ while ( pc->IsNotNullChunk()
+ && pc->level >= level)
+ {
+ if (chunk_is_newline(pc))
+ {
+ cas.NewLines(pc->nl_count);
+ did_nl = true;
+ }
+ else if (chunk_is_token(pc, CT_ASM_COLON))
+ {
+ cas.Flush();
+ did_nl = true;
+ }
+ else if (did_nl)
+ {
+ did_nl = false;
+ cas.Add(pc);
+ }
+ pc = pc->GetNextNc(E_Scope::PREPROC);
+ }
+ cas.End();
+ }
+} // align_asm_colon