MSCEWI2038

The repeated label was renamed.

This is a deprecated version of the SnowConvert documentation, please visit the official site HERE.

Severity

Low

Description

A label that was repeated inside your input code was renamed in order to ensure the correct functionality of the transformations.

Example Code

Input Code:

.LABEL label_2038
.REMARK  'in_label_1'
.LABEL label_2038
.REMARK  'in_label_2'
.LABEL label_2038
.REMARK  'in_label_3'

Output Code:

def LABEL_2038():
   snowconvert_helpers.remark(r"""in_label_1""")
   MSC_LABEL_2038_1()

#** MSC-WARNING - MSCEWI2038 - REPEATED LABEL LABEL_2038 WAS RENAMED MSC_LABEL_2038_1 **
def MSC_LABEL_2038_1():
   snowconvert_helpers.remark(r"""in_label_2""")
   MSC_LABEL_2038_2()

#** MSC-WARNING - MSCEWI2038 - REPEATED LABEL LABEL_2038 WAS RENAMED MSC_LABEL_2038_2 **
def MSC_LABEL_2038_2():
   snowconvert_helpers.remark(r"""in_label_3""")

Recommendations

Last updated