swift -frontend -repl
で起動して、インポートして:print_module <モジュール名>
ですね。xcode-select
でXcode-beta.app
を選択していない場合、-sdk
パラメータも追加で渡す必要があるぽい。$ DEVELOPER_DIR=/Applications/Xcode-beta.app swift -frontend -repl -sdk $(DEVELOPER_DIR=/Applications/Xcode-beta.app xcrun -sdk macosx -show-sdk-path) *** You are running Swift's integrated REPL, *** *** intended for compiler and stdlib *** *** development and testing purposes only. *** *** The full REPL is built as part of LLDB. *** *** Type ':help' for assistance. *** (swift)
(edited)