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

Доработать парсинг атрибутов #4

Open
sergeche opened this issue Oct 20, 2023 · 1 comment
Open

Доработать парсинг атрибутов #4

sergeche opened this issue Oct 20, 2023 · 1 comment
Assignees

Comments

@sergeche
Copy link
Contributor

sergeche commented Oct 20, 2023

В текущей реализации атрибуты парсятся либо как строковый литерал (attr="value" или attr=value), либо как выражение (attr=${foo}`).

Нужно доработать парсер, чтобы понимал смешанный формат:

  • attr="${foo}" — выражение внутри кавычек, нужно воспринимать как аналог attr=${foo}
  • attr="foo ${bar} baz" — смешанный тип, внутри строки выражение, нужно воспринимать как attr=${'foo ' + bar + ' baz'}, то есть всё значение превратить в выражение

Доработать нужно функцию parseAttributeValue в файле ./src/parser/attribute.ts

@rvrhiv
Copy link

rvrhiv commented Nov 13, 2023

я сделаю :)

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