2015-10-31 12:01:49 +00:00
|
|
|
// A standalone comment is a comment which is not attached to any kind of node
|
|
|
|
|
2015-10-26 22:23:22 +00:00
|
|
|
// This comes from Terraform, as a test
|
|
|
|
variable "foo" {
|
2015-10-31 12:01:49 +00:00
|
|
|
# Standalone comment should be still here
|
|
|
|
|
2015-10-26 22:23:22 +00:00
|
|
|
default = "bar"
|
|
|
|
description = "bar" # yooo
|
|
|
|
}
|
2015-10-25 22:34:41 +00:00
|
|
|
|
2015-10-31 12:01:49 +00:00
|
|
|
/* This is a multi line standalone
|
|
|
|
comment*/
|
|
|
|
|
|
|
|
|
2015-10-26 22:42:05 +00:00
|
|
|
// fatih arslan
|
2015-10-26 22:23:22 +00:00
|
|
|
/* This is a developer test
|
|
|
|
account and a multine comment */
|
|
|
|
developer = [ "fatih", "arslan"] // fatih arslan
|
2015-10-25 22:34:41 +00:00
|
|
|
|
2015-10-26 22:23:22 +00:00
|
|
|
# One line here
|
|
|
|
numbers = [1,2] // another line here
|
2015-10-25 22:34:41 +00:00
|
|
|
|
2015-10-26 22:23:22 +00:00
|
|
|
# Another comment
|
|
|
|
variable = {
|
|
|
|
description = "bar" # another yooo
|
2015-10-31 12:01:49 +00:00
|
|
|
foo {
|
|
|
|
# Nested standalone
|
|
|
|
|
|
|
|
bar = "fatih"
|
|
|
|
}
|
2015-10-26 22:23:22 +00:00
|
|
|
}
|
2015-10-25 22:34:41 +00:00
|
|
|
|
2015-10-26 22:42:05 +00:00
|
|
|
// lead comment
|
2015-10-30 18:49:10 +00:00
|
|
|
foo {
|
2015-10-26 22:42:05 +00:00
|
|
|
bar = "fatih" // line comment 2
|
|
|
|
} // line comment 3
|
2015-10-26 22:23:22 +00:00
|
|
|
|