projects
/
idea
/
javafx-plugin.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
formatter tests and minor fixes
[idea/javafx-plugin.git]
/
testData
/
formatter
/
objectLiteralsIndent_after.fx
1
def timeline: Timeline = Timeline {
2
repeatCount: Timeline.INDEFINITE
3
keyFrames: [
4
KeyFrame {
5
time: 1s
6
action: function () {
7
foo();
8
if (a > 4) {
9
a = 4;
10
timeline.stop();
11
}
12
}
13
}
14
]
15
}