Resolution:
Modify the code to eliminate references from the chained contructor to instance or method-local data; then recompile.
Example:
In the following example, the S1 field is declared within the same method as is attempting to pass it as a parameter.
       class-id A.
       01 _name string.
       01 _otherName string.
       method-id new(s as string).
           set _name to s
       end method.
       method-id new
       01 s1 string.
           invoke self::new(s1)
       end method.
       end class.