{
  "statement-lambda": {
    "prefix": "fn",
    "body": [
      "$1 =>",
      "{",
      "\t$0",
      "}"
    ]
  },
  "foreach": {
    "prefix": "foreach",
    "body": [
      "foreach (var ${2} in ${1})",
      "{",
      "\t$0",
      "}"
    ],
    "description": "Creates a foreach statement"
  },
  "if": {
    "prefix": "if",
    "body": [
      "if (${1})",
      "{",
      "\t$0",
      "}"
    ],
    "description": "Creates an if statement"
  },
  "throw new NotImplementedException": {
    "prefix": "throw new NotImplementedException",
    "body": [
      "throw new NotImplementedException($1)$0"
    ]
  },
  "is not null": {
    "prefix": "is not null",
    "body": [
      "is not null"
    ]
  },
  "is null": {
    "prefix": "is null",
    "body": [
      "is null"
    ]
  },
  "yield return": {
    "prefix": "yield return",
    "body": [
      "yield return "
    ]
  },
  "throw new InvalidOperationException": {
    "prefix": "throw new InvalidOperationException",
    "body": [
      "throw new InvalidOperationException($1)$0"
    ]
  }
}