« Welcome Stefanie |
Home |
MBS FileMaker Plugin,… »
One of our apps uses XojoScript to compile and run scripts on the fly. We log warnings and errors. There is a list of all warnings in Xojo documentation. Today I had to figure out which warning is a specific number, so I started building a table. Here it is:
XojoScript Enumeration | Description | Value |
ConversionPrecision | Converting from %OriginalType to %NewType causes a possible loss of precision, which can lead to unexpected results. | 5 |
ConversionSign | Converting from %OriginalType to %NewType causes the sign information to be lost, which can lead to unexpected results. | 6 |
Custom | A custom warning displayed with Pragma Warning. | 8 |
Deprecated | %Name is deprecated. | 1 |
DeprecatedWithReplacement | %Name is deprecated. You should use %Replacement instead. | 2 |
FloatingPointComparison | Performing a %Operator comparison on floating-point values can yield unexpected results due to their inexact binary representation. | 7 |
NameLookupChange | Before 2014r3, this would have referred to the %OldPath but now it refers to the %NewPath. | 14 |
OldStyleConstructor | Old-style constructor methods are no longer supported. You should use "Constructor" instead. | 3 |
ShadowedConstant | This constant shadows one already defined by %Superclass. | 13 |
ShadowedProperty | This property shadows one already defined by %Superclass. | 12 |
UnknownPragmaWarning | Unknown pragma name. | 4 |
UnusedEventParameter | %Name is an unused event parameter. | 11 |
UnusedLocal | %Name is an unused local variable. | 9 |
UnusedMethodParameter | %Name is an unused method parameter. | 10 |
14 11 18 - 13:18