[ | |
# These lines should all appear | |
# inside the block | |
cc_binary( | |
name = "foo_%s" % lang, | |
) | |
for lang in li # list comprehension | |
for li in foo # nested list comprehension | |
if lang in langs # condition | |
if lang # another condition | |
] # List comprehension ends | |
[ | |
# These lines should all appear | |
# inside the block | |
cc_binary( | |
# Here's a comment | |
# about the target | |
name = "foo_%s" % lang, | |
), # My binary | |
] # List ends |