UnityScript.Parser.UnityScriptParser.attribute C# (CSharp) Méthode

attribute() public méthode

public attribute ( ) : void
Résultat void
        public void attribute()
        {
            try
            {
                this.match(0x63);
                Attribute attribute = this.attribute_constructor();
                if (base.inputState.guessing == 0)
                {
                    this._attributes.Add(attribute);
                }
            }
            catch (RecognitionException exception)
            {
                if (base.inputState.guessing != 0)
                {
                    throw;
                }
                this.reportError(exception);
                this.recover(exception, tokenSet_21_);
            }
        }
UnityScriptParser