LValue.cs 184 B

12345678910111213
  1. using System;
  2. namespace csharp_sccd_compiler
  3. {
  4. public class LValue : Expression
  5. {
  6. public LValue(string input_string) : base(input_string)
  7. {
  8. }
  9. }
  10. }