Changeset c5cb943d in mainline for uspace/dist/src/sysel/lib/boxed.sy


Ignore:
Timestamp:
2010-06-09T19:01:08Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1113c9e
Parents:
051bc69a
Message:

Update SBI to rev. 291.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/dist/src/sysel/lib/boxed.sy

    r051bc69a rc5cb943d  
    3838class Char is
    3939        var Value : char;
     40
     41        fun get_as_string() : string, builtin;
     42
     43        -- String representation.
     44        prop AsString : string is
     45                get is
     46                        return get_as_string();
     47                end
     48        end
    4049end
    4150
    4251class Int is
    4352        var Value : int;
     53
     54        fun get_as_string() : string, builtin;
     55
     56        -- String representation.
     57        prop AsString : string is
     58                get is
     59                        return get_as_string();
     60                end
     61        end
    4462end
    4563
Note: See TracChangeset for help on using the changeset viewer.