bb property

  1. @TagNumber.new(1)
int get bb

The field name "b" fails to compile in proto1 because it conflicts with a local variable named "b" in one of the generated methods. Doh. This file needs to compile in proto1 to test backwards-compatibility.

Implementation

@$pb.TagNumber(1)
$core.int get bb => $_getIZ(0);
  1. @TagNumber.new(1)
set bb (int v)

Implementation

@$pb.TagNumber(1)
set bb($core.int v) { $_setSignedInt32(0, v); }