1
0
mirror of https://github.com/chylex/Code-Statistics.git synced 2024-10-17 08:42:49 +02:00
Code-Statistics/LanguageJava/Elements/FlowStatement.cs

6 lines
235 B
C#

namespace LanguageJava.Elements{
public enum FlowStatement{
If, Else, For, EnhancedFor, While, DoWhile, Switch, SwitchCase, SwitchDefault, TryCatch, TryWithResources, Try, Catch, Finally, Return, Break, Continue
}
}