AST: Remove SourceFileKind::REPL

This commit is contained in:
Slava Pestov
2020-05-07 02:04:05 -04:00
parent 2813f68428
commit b81c0d63d1
15 changed files with 16 additions and 48 deletions

View File

@@ -107,7 +107,6 @@ enum class FileUnitKind {
enum class SourceFileKind {
Library, ///< A normal .swift file.
Main, ///< A .swift file that can have top-level code.
REPL, ///< A virtual file that holds the user's input in the REPL.
SIL, ///< Came from a .sil file.
Interface ///< Came from a .swiftinterface file, representing another module.
};