# encoding: utf-8 # frozen_string_literal: true module Carbon module Compiler module Node module Statement # A return statement. This is used for control flow to return from the # current function. This has one child: the value to return. If no # value is given, it returns a void type. class Return < Base attributes value: 0 end end end end end