/vqdr/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/vqdr/trunk

« back to all changes in this revision

Viewing changes to src/libvqdr/function/function_token.vala

  • Committer: Gustav Hartvigsson
  • Date: 2022-05-26 16:14:23 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20220526161423-qsrrng3x3ykyp1ie
* woopes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
107
107
        
108
108
      }
109
109
      
110
 
      FunctionToken? retval = null;
111
 
      
112
110
      // We get the token type.
113
111
      Type? t = _allowed_functions.@get (token.down ());
114
112
      
115
113
      if (t != null) {
116
114
          // Construct a new instance of the token.
117
 
          retval = (FunctionToken) GLib.Object.@new (t, null, null);
118
 
          
 
115
          return (FunctionToken) GLib.Object.@new (t, null, null);
119
116
      }
120
 
      
121
 
      return retval;
 
117
      return null;
122
118
    }
123
119
    
124
120
    /**