T.R | Title | User | Personal Name | Date | Lines |
---|
2609.1 | | COOKIE::KITTELL | Richard - Enterprise Storage Mgmt | Tue Mar 24 1992 10:41 | 2 |
|
It is looking for END RECORD; and found the semi-colon before it saw RECORD.
|
2609.2 | | TOOK::MINTZ | Erik Mintz, DECmcc Development, dtn 226-5033 | Tue Mar 24 1992 11:23 | 5 |
| There are a number of cases where the V1.2 DECmcc toolkit tools more
strictly enforce the rules defined in the SRM. Looks like you found
one of the cases.
-- Erik
|
2609.3 | new SRM ?? | HLRG02::STEEG | DECmcc PABX AM development | Wed Mar 25 1992 02:52 | 6 |
| Thanks for your answers.
Can anybody tell me when the new SRM will be available.
You can't develop without the SRM.
Regards Henk van Steeg
|
2609.4 | Another error | HLRG02::STEEG | DECmcc PABX AM development | Wed Mar 25 1992 03:07 | 19 |
| re .1
I tried END RECORD; but now the MSL tranlator gives the following error message:
> The value "END" is not expected.
TYPE A = 5555 RECORD AA = 1 : Latin1String; END RECORD;
What's wrong.
I also can't use: LSE/ENV=SYS$COMMON:[SYSLIB}MCC_MSL_TEMPLATE.ENV TEST.MS
This is because the file SYS$COMMON:[SYSLIB}MCC_MSL_TEMPLATE.ENV doesn't exist,
how can I get this file.
Please help!
Henk
|
2609.5 | Yes it works, but.... | HLRG02::STEEG | DECmcc PABX AM development | Wed Mar 25 1992 04:02 | 24 |
| Because RECORD data-type didn't work, I made a little test MSL file.
When I placed END RECORD in this file it gave also an error.
But when I place END RECORD in my 'real' MSL file it workes fine.
I added my test MSL file, can anybody tell me why this file gives the error
and the 'real' MSL file not ??
Regards Henk.
-------------------------------------------------------------------------------
MANAGEMENT SPECIFICATION MCC_TEST_am_srvc_if;
VERSION = T1.2.0;
SYMBOL-PREFIX = MCC_;
TYPE REC1 = 1111 RECORD
FIELD1 = 1 : Unsigned16;
FIELD2 = 2 : Unsigned16;
END RECORD;
END SPECIFICATION MCC_TEST_am_srvc_if.
;
|
2609.6 | "Its elementry my dear Watson!" (check the line number) | TOOK::L_GROSSMAN | | Tue Mar 31 1992 09:45 | 25 |
|
The key is that the line number is the "END SPECIFICATION" (line 10)
not line 8. What is not very clear here is what MSL is expecting.
---------------------------------------------------------------------
L_GROSSMAN>type temp.ms
MANAGEMENT SPECIFICATION MCC_TEST_am_srvc_if;
VERSION = T1.2.0;
SYMBOL-PREFIX = MCC_;
TYPE REC1 = 1111 RECORD
FIELD1 = 1 : Unsigned16;
FIELD2 = 2 : Unsigned16;
END RECORD;
END SPECIFICATION MCC_TEST_am_srvc_if.
;
L_GROSSMAN>man/tool/spec temp
DECmcc Management Specification Language Translation Tool
Version X1.2.18
%MCCMSL-I-MSLLOCATION, Line: 10, File: TEMP.MS;,
%MCCMSL-E-PARSER, syntax error: The value "END" is not expected
%MCCMSL-E-ERROR, MSL did not complete successfully, please see previous error
L_GROSSMAN>
|