Yehyoung Kang

Results 50 comments of Yehyoung Kang

I am not a contributor, but I believe `ast.parse()` does not produce `ast.Constant()` until 3.8. I assume your code will have to avoid `ast.Constant()` to keep compatibility with 3.7.

I did a `sys.version_info() < (3, 8)` check to produce/handle `ast.Num()` and `ast.Str()` on Python < 3.8; while only handling `ast.Constant()` on Python 3.8+. How are you generating AST trees...

I had a similar problem while installing [0.4.0-SNAPSHOT-b38f6dd](https://github.com/kyleneideck/BackgroundMusic/releases/tag/0.4.0-SNAPSHOT-b38f6dd) (I'm on macOS Monterey 12.4). Afterwards, I downloaded and ran `safe_install_dir.sh` and it printed: ```console $ /bin/bash -x ~/Desktop/safe_install_dir.sh -y + PATH=/bin:/sbin:/usr/bin:/usr/sbin...

[@types/vhtml](https://www.npmjs.com/package/@types/vhtml) is now public (see https://github.com/developit/vhtml/issues/25#issuecomment-750644187). I think we can close this issue.

@AndrewLeedham Probably. I suppose we could split the `JSX.IntrinsicElements` interface into a separate `jsx.d.ts` file. Then users who want vhtml JSX semantics would need to add this to the top...

I've been experimenting with enabling [children type-checking](https://www.typescriptlang.org/docs/handbook/jsx.html#children-type-checking) with TypeScript. I was unsuccessful. It turns out TypeScript has some strict assumptions about how child components are passed around in JSX. ```tsx...

[@types/vhtml](https://www.npmjs.com/package/@types/vhtml) 2.2.1 supports strict children type checks! https://github.com/preactjs/preact/pull/1116#issuecomment-414004721 gave me a hint to look into `JSX.LibraryManagedAttributes`, an obscure feature implemented in [TypeScript 3.0](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-0.html#support-for-defaultprops-in-jsx). I used it to transform function component...

Thank you. I handled the situation poorly, and will not make the same mistake again. I doubt it would be appropriate to convert the EngineData parser to Rust/WebAssembly. Decoding layer...

ICC color profiles are far beyond our interests--but if you can provide a PR, please go ahead! I can guarantee that no one (including myself) will be working on this...

Sorry about the late reply. We're looking into parsing font and other metadata in text layers. Unfortunately, much of it is hidden behind the EngineData format, which we have yet...