Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Location.cs « codegen « ilasm « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2fc4637e158ab3c3bff34246c0deae71cae43f29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// Mono.ILASM.Location.cs
//
// Author(s):
//  Jackson Harper (Jackson@LatitudeGeo.com)
//
// (C) 2003 Jackson Harper, All rights reserved
//

using System;

namespace Mono.ILASM {

        /// TODO: This class will eventually store il file location info,
        /// like line and col
        public class Location
        {

        }

}