Example #1
0
def modifier(value):
  """A type modifier."""
  return justErrors(value)
Example #2
0
def blockLocalVar(value):
  """Just the errors."""
  return justErrors(value)
Example #3
0
def whileStmt(value):
  """An if statement."""
  return justErrors(value)
Example #4
0
def macroCall(value):
  """A call to a macro."""
  return justErrors(value)
Example #5
0
def cppClass(value):
  """A C++ class."""
  # TODO(robbyw): Better parsing here, this is very minimal.
  return justErrors(value)
Example #6
0
def propertyOption(value): # 2 lines check is broken due to decorator wrapping. # pylint: disable=W9911
  """Option for a property."""
  return justErrors(value)
Example #7
0
def propertyDeclaration(value): # 2 lines check is broken due to decorator wrapping. # pylint: disable=W9911
  """A property declaration."""
  return justErrors(value)
Example #8
0
def blockSuffix(value):
  """A suffix that, when appended to a type, makes it a block type."""
  return justErrors(value)
Example #9
0
def ivar(value):
  """An instance variable."""
  return justErrors(value)
Example #10
0
def singleBlockParam(value):
  """Single parameter for a block."""
  return justErrors(value)
Example #11
0
def blockParams(value):
  """Parameters to a block declaration."""
  return justErrors(value)
Example #12
0
def simpleType(value): # 2 lines check is broken due to decorator wrapping. # pylint: disable=W9911
  """A type."""
  return justErrors(value)
Example #13
0
def cppTemplateValues(value):
  """Values for a C++ template."""
  return justErrors(value)
Example #14
0
def implementedProtocols(value):
  """List of implemented protocols."""
  return justErrors(value)
Example #15
0
def methodSignature(value):
  """A method signature."""
  return justErrors(value)
Example #16
0
def ivarSection(value):
  """Section within an ivar block in an interface."""
  return justErrors(value)
Example #17
0
def methodDeclaration(value):
  """A method declaration."""
  return justErrors(value)
Example #18
0
def propertyImplementation(value):
    return justErrors(value)
Example #19
0
def propertyOptions(value):
  """List of options for a property."""
  return justErrors(value)
Example #20
0
def ivarBlock(value):
  """Block full of ivar declarations."""
  return justErrors(value)
Example #21
0
def declarationSection(value):
  """Declarations sub-section in an interface or protocol."""
  return justErrors(value)
Example #22
0
def selectorPart(value):
  """A part of a selector."""
  return justErrors(value)
Example #23
0
def declarations(value): # 2 lines check is broken due to decorator wrapping. # pylint: disable=W9911
  """Declarations area of an interface."""
  return justErrors(value)
Example #24
0
def singleSpaceOrLineWrap(value):
  """Single space or line wrap."""
  return justErrors(value)
Example #25
0
def expressionPart(value):
  """Just the errors."""
  return justErrors(value)
Example #26
0
def selectorWithParams(value):
  """Multipart selector."""
  return justErrors(value)
Example #27
0
def unparsedStmt(value):
  """Unparsed statement."""
  return justErrors(value)
Example #28
0
def methodReturnType(value):
  """A method signature return type."""
  return justErrors(value)
Example #29
0
def forwardDeclaration(value):
  """A forward declaration of a class."""
  return justErrors(value)
Example #30
0
def cTypeSizeModifier(value):
  """A type size modifier."""
  return justErrors(value)