Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nested table keys not supported #51

Open
datatypevoid opened this issue Nov 20, 2018 · 1 comment
Open

Nested table keys not supported #51

datatypevoid opened this issue Nov 20, 2018 · 1 comment

Comments

@datatypevoid
Copy link

To use an example from the TOML README, specifying a nested table as a key using dot syntax like this fails:

[dog."tater.man"]
  type.name = "pug"

> Error at line 2 column 7:
> Expected "=", [ \t] or [A-Za-z0-9_\-] but "." found.

This was run via the browser tool

@lfarrel6
Copy link

Dotted keys don't seem to work either.

Dotted keys example from toml spec...

name = "Orange"
physical.color = "orange"
physical.shape = "round"

Throws the following error...

Uncaught [SyntaxError: Expected "=", [ \t] or [A-Za-z0-9_\-] but "." found.] {
  message: 'Expected "=", [ \\t] or [A-Za-z0-9_\\-] but "." found.',
  expected: [
    { type: 'literal', value: '=', description: '"="' },
    { type: 'class', value: '[ \\t]', description: '[ \\t]' },
    {
      type: 'class',
      value: '[A-Za-z0-9_\\-]',
      description: '[A-Za-z0-9_\\-]'
    }
  ],
  found: '.',
  offset: 24,
  line: 2,
  column: 9,
  name: 'SyntaxError'
}

Is this package no longer being maintained?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants