diff options
| author | Akshay Nair <phenax5@gmail.com> | 2023-08-20 12:42:06 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2023-08-20 12:42:06 +0530 |
| commit | af65d13038dcdeaf93c5c718cbc74c20120c6a22 (patch) | |
| tree | e1d36b54a9c8db4660d61dde03dbcf8d50cde76e /src/declarations.ts | |
| parent | f61677bbc3ae32cc460014cffe4d9ae9264291c5 (diff) | |
| download | css-everything-af65d13038dcdeaf93c5c718cbc74c20120c6a22.tar.gz css-everything-af65d13038dcdeaf93c5c718cbc74c20120c6a22.zip | |
feat: implements function call and adds support for recursion
Diffstat (limited to '')
| -rw-r--r-- | src/declarations.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/declarations.ts b/src/declarations.ts index 5c2f9a3..c0966fa 100644 --- a/src/declarations.ts +++ b/src/declarations.ts @@ -62,6 +62,7 @@ export const toDeclaration = (expr: Expr): Declaration | undefined => { _: _ => {}, }) + // TODO: Refactor with eval match(map, { Call: ({ name, args }) => { if (name !== 'map') return |
