Hello, is it possible to implement the `expect` de...
# multiplatform
a
Hello, is it possible to implement the
expect
declaration only for some platforms? For example, I declared thread-related
expect
declarations in the common sourceSet, but these concepts do not exist in js, and I will not use these expect declarations in the js sourceSet, so is there a way to skip the implementation for the js platform?
e
not in common, no. but in another parent sourceset that doesn't include js, yes
thank you color 1