Exemplo n.º 1
0
        // Token: 0x06000561 RID: 1377 RVA: 0x00011380 File Offset: 0x0000F580
        public AScannerError CheckForToken(bool newLines, AScannerTokenScanModes scanmode)
        {
            long          position = this.Script.Position;
            AScannerError token    = this.GetToken(newLines, scanmode);

            this.Script.Position = position;
            return(token);
        }
Exemplo n.º 2
0
        // Token: 0x06000555 RID: 1365 RVA: 0x0001104C File Offset: 0x0000F24C
        public AScannerError CheckForFloat(bool newLines = true)
        {
            long          position = this.Script.Position;
            AScannerError @float   = this.GetFloat(newLines);

            this.Script.Position = position;
            return(@float);
        }
Exemplo n.º 3
0
        // Token: 0x06000558 RID: 1368 RVA: 0x00011178 File Offset: 0x0000F378
        public AScannerError CheckForString(bool newLines = true)
        {
            long          position = this.Script.Position;
            AScannerError @string  = this.GetString(newLines);

            this.Script.Position = position;
            return(@string);
        }
Exemplo n.º 4
0
        // Token: 0x06000552 RID: 1362 RVA: 0x00010F38 File Offset: 0x0000F138
        public AScannerError CheckForInteger(bool newLines = true)
        {
            long          position = this.Script.Position;
            AScannerError integer  = this.GetInteger(newLines);

            this.Script.Position = position;
            return(integer);
        }