===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
node-nan-2.14.0/cpplint.py-526-# These constants define the current inline assembly state
node-nan-2.14.0/cpplint.py:527:_NO_ASM = 0       # Outside of inline assembly block
node-nan-2.14.0/cpplint.py:528:_INSIDE_ASM = 1   # Inside inline assembly block
node-nan-2.14.0/cpplint.py:529:_END_ASM = 2      # Last line of inline assembly block
node-nan-2.14.0/cpplint.py:530:_BLOCK_ASM = 3    # The whole block is an inline assembly block
node-nan-2.14.0/cpplint.py-531-
node-nan-2.14.0/cpplint.py-532-# Match start of assembly blocks
node-nan-2.14.0/cpplint.py:533:_MATCH_ASM = re.compile(r'^\s*(?:asm|_asm|__asm|__asm__)'
node-nan-2.14.0/cpplint.py-534-                        r'(?:\s+(volatile|__volatile__))?'
##############################################
node-nan-2.14.0/cpplint.py-2211-    self.open_parentheses = 0
node-nan-2.14.0/cpplint.py:2212:    self.inline_asm = _NO_ASM
node-nan-2.14.0/cpplint.py-2213-    self.check_namespace_indentation = False
##############################################
node-nan-2.14.0/cpplint.py-2465-  def InAsmBlock(self):
node-nan-2.14.0/cpplint.py:2466:    """Check if we are currently one level inside an inline ASM block.
node-nan-2.14.0/cpplint.py-2467-
##############################################
node-nan-2.14.0/cpplint.py-2470-    """
node-nan-2.14.0/cpplint.py:2471:    return self.stack and self.stack[-1].inline_asm != _NO_ASM
node-nan-2.14.0/cpplint.py-2472-
##############################################
node-nan-2.14.0/cpplint.py-2613-      # Also check if we are starting or ending an inline assembly block.
node-nan-2.14.0/cpplint.py:2614:      if inner_block.inline_asm in (_NO_ASM, _END_ASM):
node-nan-2.14.0/cpplint.py-2615-        if (depth_change != 0 and
##############################################
node-nan-2.14.0/cpplint.py-2618-          # Enter assembly block
node-nan-2.14.0/cpplint.py:2619:          inner_block.inline_asm = _INSIDE_ASM
node-nan-2.14.0/cpplint.py-2620-        else:
node-nan-2.14.0/cpplint.py-2621-          # Not entering assembly block.  If previous line was _END_ASM,
node-nan-2.14.0/cpplint.py:2622:          # we will now shift to _NO_ASM state.
node-nan-2.14.0/cpplint.py:2623:          inner_block.inline_asm = _NO_ASM
node-nan-2.14.0/cpplint.py:2624:      elif (inner_block.inline_asm == _INSIDE_ASM and
node-nan-2.14.0/cpplint.py-2625-            inner_block.open_parentheses == 0):
node-nan-2.14.0/cpplint.py-2626-        # Exit assembly block
node-nan-2.14.0/cpplint.py:2627:        inner_block.inline_asm = _END_ASM
node-nan-2.14.0/cpplint.py-2628-
##############################################
node-nan-2.14.0/cpplint.py-2725-          if _MATCH_ASM.match(line):
node-nan-2.14.0/cpplint.py:2726:            self.stack[-1].inline_asm = _BLOCK_ASM
node-nan-2.14.0/cpplint.py-2727-