We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da6797f commit 82d25c2Copy full SHA for 82d25c2
compiler/src/dotty/tools/dotc/core/tasty/AttributePickler.scala
@@ -16,9 +16,10 @@ object AttributePickler:
16
): Unit =
17
if attributes.scala2StandardLibrary || attributes.explicitNulls then // or any other attribute is set
18
pickler.newSection(AttributesSection, buf)
19
- // Pickle attributes
20
- if attributes.scala2StandardLibrary then buf.writeNat(TastyFormat.SCALA2STANDARDLIBRARYattr)
21
- if attributes.explicitNulls then buf.writeNat(TastyFormat.EXPLICITNULLSattr)
+ // Pickle attributes
+ if attributes.scala2StandardLibrary then buf.writeNat(TastyFormat.SCALA2STANDARDLIBRARYattr)
+ if attributes.explicitNulls then buf.writeNat(TastyFormat.EXPLICITNULLSattr)
22
+ end if
23
24
end pickleAttributes
25
0 commit comments