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

Work as interpreter #25

Open
mxcl opened this issue Jan 16, 2019 · 2 comments
Open

Work as interpreter #25

mxcl opened this issue Jan 16, 2019 · 2 comments
Labels
enhancement New feature or request

Comments

@mxcl
Copy link
Owner

mxcl commented Jan 16, 2019

Strictly should be able to do this too.

@mattt
Copy link

mattt commented Jan 17, 2019

For reference: @asciibomb3r wrote a great post on the Swift.org blog announcing support for the --repl flag in swift run.

When combined with the --package-path option, building in REPL support for swift-sh could theoretically be as straightforward as invoking the builtin swift run command directly. Unfortunately, swift run --repl doesn't seem to support packages generated as executables:

$ swift --version
Apple Swift version 5.0-dev (LLVM 9a8bf9ce12, Clang eba26b8d1c, Swift b74d54a27c)
Target: x86_64-apple-darwin18.2.0
$ swift run --repl --package-path ~/Library/Developer/swift-sh.cache/foo
'foo' /Users/mattt/Library/Developer/swift-sh.cache/foo: error: unable to synthesize a REPL product as there are no library targets in the package

...then again, I'm not sure what the expected behavior would be for an executable. "Start a REPL with all of the top-level declarations in this main.swift file"?

@mxcl
Copy link
Owner Author

mxcl commented Jan 17, 2019

Yeah indeed I wasn’t thinking it through, but I think you're on to the right track with the --package-path. It probably should checkout each dependency and --package-path those. Which would be quite useful when developing a script, since you could play with the dependencies.

@mxcl mxcl added the enhancement New feature or request label Jan 29, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants