1 {
   2     "type": "Program",
   3     "body": [
   4         {
   5             "type": "LabeledStatement",
   6             "label": "label",
   7             "body": {
   8                 "type": "BlockStatement",
   9                 "body": [
  10                     {
  11                         "type": "WhileStatement",
  12                         "test": {
  13                             "type": "Literal",
  14                             "value": true
  15                         },
  16                         "body": {
  17                             "type": "BlockStatement",
  18                             "body": [
  19                                 {
  20                                     "type": "BreakStatement",
  21                                     "label": "label"
  22                                 }
  23                             ]
  24                         }
  25                     }
  26                 ]
  27             }
  28         }
  29     ]
  30 }