diff options
author | Björn Gustavsson <[email protected]> | 2014-10-20 13:17:36 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2015-01-12 11:40:25 +0100 |
commit | b9b741b23bdaab354b2b5cc8cfb424550c2dd743 (patch) | |
tree | c3224a3a036f0af142520d92f6d3bfe799463ba9 /lib/asn1/src/asn1ct_check.erl | |
parent | 0775ee9c7dc4957302a756b8b37cf94e372d3ecc (diff) | |
download | otp-b9b741b23bdaab354b2b5cc8cfb424550c2dd743.tar.gz otp-b9b741b23bdaab354b2b5cc8cfb424550c2dd743.tar.bz2 otp-b9b741b23bdaab354b2b5cc8cfb424550c2dd743.zip |
Remove special case in parser
The parser handled the builtin ABSTRACT-SYNTAX and TYPE-IDENTIFIER
classes specially, which caused problems. It turns out that there
is no longer any need to handle those classes specially.
Diffstat (limited to 'lib/asn1/src/asn1ct_check.erl')
-rw-r--r-- | lib/asn1/src/asn1ct_check.erl | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/asn1/src/asn1ct_check.erl b/lib/asn1/src/asn1ct_check.erl index 4a67173064..81bb78f9d4 100644 --- a/lib/asn1/src/asn1ct_check.erl +++ b/lib/asn1/src/asn1ct_check.erl @@ -3194,12 +3194,6 @@ check_type(S=#state{recordtopname=TopName},Type,Ts) when is_record(Ts,type) -> TempNewDef#newt{type={'SET OF',check_setof(S,Type,Components)}, tag= merge_tags(Tag,?TAG_CONSTRUCTED(?N_SET))}; - %% This is a temporary hack until the full Information Obj Spec - %% in X.681 is supported - {#'Externaltypereference'{type='TYPE-IDENTIFIER'}, - [{typefieldreference,_,'Type'}]} -> - Ct=maybe_illicit_implicit_tag(open_type,Tag), - TempNewDef#newt{type='ASN1_OPEN_TYPE',tag=Ct}; {pt,Ptype,ParaList} -> %% Ptype might be a parameterized - type, object set or |