using System; namespace csharp_sccd_compiler { public class LValue : Expression { public LValue(string input_string) : base(input_string) { } } }