cssprima icon indicating copy to clipboard operation
cssprima copied to clipboard

Feature request: line/column numbers

Open AlexanderZeilmann opened this issue 10 years ago • 0 comments

Would it be possible to add the line/column numbers of the starting and ending points of the tokens to the AST? Something like

{
  "type": "Identifier",
  "value": "color",
  "position": {
    "start": {
      "line": 2,
      "col": 14
    },
    "end": {
      "line": 2,
      "col": 18
    }
  }
}

Btw, this is one of the best css parsers, I found so far. Keep up the good work :-)

AlexanderZeilmann avatar Jan 05 '15 13:01 AlexanderZeilmann