const isNumeric = (variableNode: VariableNode) =>
  ((variableNode.kind == "variable_declaration" ||
    variableNode.kind == "parameter_application") &&
    ["numeric", "number_placeholder"]
      .includes(variableNode.args.data_value.kind)) ||