API-CHANGES.txt 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828
  1. 0.19.1:
  2. * Deprecate amber/boot api nextId, prop globalJsVariables.
  3. * Remove amber/boot prop reservedWords (with the hope no one uses it directly).
  4. * Deprecate ProtoObject >> identityHash.
  5. * Deprecate SmalltalkImage >> packageAt: in favour of explicit #packageAt:if{Absent,Present}:.
  6. + AmberBootstrapInitialization class >>
  7. + run
  8. + initializeClasses
  9. + organizeClasses
  10. + organizeMethods
  11. + Behavior >>
  12. + basicOrganization
  13. + basicOrganization:
  14. + ClassOrganizer >>
  15. + theClass
  16. + ClassOrganizer class >>
  17. + on:
  18. + Compiler class >>
  19. + eval:
  20. + JavaScriptException >>
  21. + shouldBeStubbed
  22. + wrap
  23. + Message class >>
  24. + selector:arguments:notUnderstoodBy:
  25. + MethodContext >>
  26. + stubHere
  27. + stubToAtMost:
  28. + NonBooleanReceiver class >>
  29. + signalOn:
  30. + Package >>
  31. + evalBlock
  32. + evalBlock:
  33. + Package class >>
  34. + named:javaScriptDescriptor:
  35. + SmalltalkImage >>
  36. + packageDictionary
  37. + packageAt:ifPresent:
  38. + TBehaviorProvider >>
  39. + methodOrganizationEnter:andLeave:
  40. + TMasterBehavior >>
  41. + definedMethods
  42. + enterOrganization
  43. + leaveOrganization
  44. + Trait >>
  45. + basicOrganization
  46. + basicOrganization:
  47. + UndefinedObject >>
  48. + ==
  49. + Number >>
  50. + min:max:
  51. + degreesToRadians
  52. + radiansToDegrees
  53. + arcTan:
  54. + between:and:
  55. + Number class >>
  56. + radiansPerDegree
  57. + Point >>
  58. + dotProduct:
  59. + normal
  60. + angle
  61. + normalized
  62. + r
  63. + corner:
  64. + extent:
  65. + rectangle:
  66. + Rectangle >>
  67. + =
  68. + corner
  69. + origin
  70. + containsPoint:
  71. + containsRect:
  72. + printOn:
  73. + Rectangle class >>
  74. + origin:corner:
  75. + origin:extent:
  76. + point:point:
  77. - Package >>
  78. - basicName:
  79. - basicImports
  80. - ProtoObject >>
  81. - isSameInstanceAs:
  82. - ObjectTest >>
  83. - testIdentityHash
  84. 0.19.0:
  85. * Remove class Thenable, add trait TThenable.
  86. * Behavior / Trait hierarchy uses traits.
  87. + NativeFunction class >>
  88. + isNativeFunction:
  89. + IRInstructions >>
  90. + isSelf
  91. + isSuper
  92. + IRVariable >>
  93. + isSelf
  94. + isSuper
  95. + ScopeVar >>
  96. + isSelf
  97. + isSuper
  98. + PseudoVar >>
  99. + isSelf
  100. + isSuper
  101. +UndefinedObject >>
  102. + identityHash
  103. + value
  104. - IRSend >>
  105. - isSuperSend
  106. 0.18.3:
  107. * Move {add,remove}Element from Array.prototype to kernel API.
  108. * New superclass of Behavior named BehaviorBody, pushed up some methods.
  109. * Represents named holder of methods; hierarchy and instantiation left to Behavior.
  110. * Add class Trait as subclass of BehaviorBody.
  111. * Add class TraitTransformation.
  112. * Deprecate #asJSON in favour of #asJavaScriptObject.
  113. * Deprecate #asJavascript in favour of #asJavaScriptSource.
  114. + BehaviorBody >>
  115. + setTraitComposition:
  116. + traitCompositionDefinition
  117. + traitUsers
  118. + allSubclassesDo:
  119. + superclass
  120. + Trait >>
  121. + allInstanceVariableNames
  122. + allSubclassesDo:
  123. + asJavascript
  124. + asTraitComposition
  125. + category
  126. + classTag
  127. + definition
  128. + package
  129. + superclass
  130. + theMetaClass
  131. + theNonMetaClass
  132. + exportBehaviorDefinitionTo:using:
  133. + traitUsers
  134. + package:
  135. + Trait class >>
  136. + named:package:
  137. + named:uses:package:
  138. + TraitTransformation >>
  139. + -
  140. + @
  141. + addAliases:
  142. + addExclusions:
  143. + aliases
  144. + asJSON
  145. + asJavascript
  146. + asTraitComposition
  147. + asTraitTransformation
  148. + definition
  149. + exclusions
  150. + initialize
  151. + postCopy
  152. + trait
  153. + trait:
  154. + Collection >>
  155. + copyWithout:
  156. + SequenceableCollection >>
  157. + reverseDo:
  158. + Array >>
  159. + asTraitComposition
  160. + amber/boot api >>
  161. + addElement
  162. + removeElement
  163. + wrapJavaScript
  164. + CharacterArray >>
  165. + asSymbolPrintOn:
  166. + symbolPrintString
  167. + String >>
  168. + isSelector
  169. + StringStream >>
  170. + print:
  171. + printSymbol:
  172. + Package >>
  173. + traitCompositions
  174. + Class >>
  175. + subClass:
  176. + subClass:uses:
  177. + subClass:uses:instanceVariables:
  178. + subClass:uses:instanceVariables:category:
  179. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  180. + subClass:uses:instanceVariables:package:
  181. + UndefinedObject >>
  182. + subClass:
  183. + subClass:uses:
  184. + subClass:uses:instanceVariables:
  185. + subClass:uses:instanceVariables:category:
  186. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  187. + subClass:uses:instanceVariables:package:
  188. + Metaclass >>
  189. + uses:instanceVariableNames:
  190. - Association >>
  191. - importsString
  192. - String >>
  193. - importsString
  194. - AbstractExporter
  195. - classNameFor:
  196. - Exporter >>
  197. - jsClassNameFor:
  198. 0.18.2:
  199. * Add Platform-DOM package with DOM-related stuff.
  200. * Platform-DOM not loaded by default. Packages that will use it will import it.
  201. + PlatformDom class >>
  202. + isFeasible
  203. + isDomNode:
  204. + newCustomEvent:detail:
  205. + toArray:
  206. + CharacterArray >>
  207. + asDomNode
  208. + Collection >>
  209. + asDomNode
  210. + JSObjectProxy >>
  211. + asDomNode
  212. + String >>
  213. + htmlTextContent
  214. 0.18.1:
  215. + ASTNode >>
  216. + withTail:
  217. - SendNode >>
  218. - valueWithReceiver:
  219. 0.18.0:
  220. * Remove class RethrowErrorHandler (hack for cli before 0.12.3).
  221. * Add Kernel-Dag package with abstract DAG-node and DAG-node visitor.
  222. * Some internal API changes in Compiler-* (including the move to DAG-node).
  223. - Object >>
  224. - throw:
  225. 0.17.0:
  226. * Remove classes InterfacingObject, PlatformInterface.
  227. * Deprecate $boot.nil (use $boot.nilAsReceiver).
  228. + amber/boot api >>
  229. + nilAsReceiver
  230. - NativeFunction class >>
  231. - constructor:
  232. - constructor:value:
  233. - constructor:value:value:
  234. - constructor:value:value:value:
  235. 0.16.1:
  236. * Deprecate $boot.dnu (use $boot.nilAsClass).
  237. + amber/boot api >>
  238. + nilAsClass
  239. 0.16.0:
  240. * Deprecate ClassBuilder >> setupClass:
  241. * $core.initialize now returns a Promise
  242. * $core.addClass now returns the class
  243. + amber/boot api >>
  244. + send2
  245. + traverseClassTree
  246. + Promise class >>
  247. + new
  248. - amber/boot api >>
  249. - wrapClassName
  250. - send
  251. - allSubclasses
  252. - AbstractCodeGenerator >>
  253. - classNameFor:
  254. 0.15.1:
  255. * Thenable class added
  256. * Promise class added, wraps JS Promise, subclass of Thenable
  257. + Thenable >>
  258. + catch:
  259. + on:do:
  260. + on:do:catch:
  261. + then:
  262. + then:catch:
  263. + then:on:do:
  264. + then:on:do:catch:
  265. + JSObjectProxy >>
  266. + catch:
  267. + on:do:
  268. + on:do:catch:
  269. + then:
  270. + then:catch:
  271. + then:on:do:
  272. + then:on:do:catch:
  273. + amber/boot api >>
  274. + seamless
  275. + Promise class >>
  276. + new:
  277. + forBlock:
  278. + value:
  279. + signal:
  280. + all:
  281. + any:
  282. 0.14.18:
  283. * Some internal API changes in Compiler-*.
  284. 0.14.14:
  285. * InterfacingObject >> ajax: deprecated
  286. * PlatformInterface class deprecated
  287. * Class BrowserInterface removed
  288. * Class Terminal, BrowserTerminal added
  289. * Class Platform, BrowserPlatform added
  290. + Environment >>
  291. + renamePackage:to:
  292. + Platform class >>
  293. + globals
  294. + newXhr
  295. + Terminal class >>
  296. + alert:
  297. + confirm:
  298. + prompt:
  299. + prompt:default:
  300. SmalltalkImage >>
  301. + existsJsGlobal:
  302. - PlatformInterface class >>
  303. - initialize
  304. - setWorker:
  305. 0.14.12:
  306. + JSObjectProxy >>
  307. + putOn:
  308. + ProtoStream >>
  309. + nextPutJSObject:
  310. 0.14.11:
  311. * Basic streaming protocol extracted from Stream to ProtoStream
  312. + Object >>
  313. + in:
  314. + JSObjectProxy >>
  315. + in:
  316. 0.14.10:
  317. + JSObjectProxy class >>
  318. + addObjectVariablesTo:ofProxy:
  319. + compareJSObjectOfProxy:withProxy:
  320. + forwardMessage:withArguments:ofProxy:
  321. + jsObject:ofProxy:
  322. + lookupProperty:ofProxy:
  323. - JSObjectProxy >>
  324. - jsObject:
  325. - lookupProperty:
  326. - compareJSObjectWith:
  327. - addObjectVariablesTo:
  328. - forwardMessage:withArguments:
  329. 0.14.4:
  330. + AmdExporter >>
  331. + importsForOutput:
  332. + AbstractCodeGenerator >>
  333. + currentPackage
  334. + currentPackage:
  335. + Compiler >>
  336. + currentPackage
  337. + currentPackage:
  338. + compile:forClass:protocol:
  339. + compileNode:forClass:package:
  340. + SemanticAnalyzer >>
  341. + thePackage
  342. + thePackage:
  343. + isVariableUndefined:inPackage:
  344. - Compiler >>
  345. - compile:
  346. - compile:forClass:
  347. - compileExpression:
  348. - SemanticAnalyzer >>
  349. - isVariableGloabllyUndefined:
  350. - Behavior >>
  351. - compile:
  352. 0.14.3:
  353. * #heliosClass is now #classTag
  354. + Compiler >>
  355. + eval:forPackage:
  356. + Behavior >>
  357. + packageOfProtocol:
  358. + Exporter >>
  359. + exportPackageContextOf:on:
  360. + exportPackageImportsOf:on:
  361. + Package >>
  362. + basicImports
  363. + imports
  364. + imports:
  365. + importsDefinition
  366. + importsFromJson:
  367. + importsAsJson
  368. + sortedImportsAsArray
  369. + validateImports:
  370. + Package class >>
  371. + named:imports:transport:
  372. + Association >>
  373. + importsString
  374. + String >>
  375. + importsString
  376. + ProtoObject >>
  377. + ifNil:
  378. + ifNil:ifNotNil:
  379. + ifNotNil:
  380. + ifNotNil:ifNil:
  381. + isNil
  382. + notNil
  383. - Object >>
  384. - ifNil:
  385. - ifNil:ifNotNil:
  386. - ifNotNil:
  387. - ifNotNil:ifNil:
  388. - isNil
  389. - notNil
  390. 0.14.1:
  391. * NativeFunction class >> constructor:[value:...] deprecated
  392. + NativeFunction class >>
  393. + constructorNamed:
  394. + constructorNamed:value:
  395. + constructorNamed:value:value:
  396. + constructorNamed:value:value:value:
  397. + constructorOf:
  398. + constructorOf:value:
  399. + constructorOf:value:value:
  400. + constructorOf:value:value:value:
  401. + functionNamed:
  402. + functionNamed:value:
  403. + functionNamed:value:value:
  404. + functionNamed:value:value:value:
  405. + functionNamed:valueWithArgs:
  406. + functionOf:
  407. + functionOf:value:
  408. + functionOf:value:value:
  409. + functionOf:value:value:value:
  410. + functionOf:valueWithArgs:
  411. + methodOf:this:
  412. + methodOf:this:value:
  413. + methodOf:this:value:value:
  414. + methodOf:this:value:value:value:
  415. + methodOf:this:valueWithArgs:
  416. + SmalltalkImage >>
  417. + optOut:
  418. + cancelOptOut:
  419. 0.14.0:
  420. + Object >>
  421. + asJQuery
  422. + asJQueryInContext:
  423. + BlockClosure >>
  424. + asJQuery
  425. + asJQueryInContext:
  426. - AnnouncementSubscription >>
  427. - block
  428. - block:
  429. - Collection >>
  430. - contains:
  431. - String >>
  432. - asSelector
  433. - asJavaScriptSelector
  434. - SmalltalkImage >>
  435. - at:
  436. - at:ifAbsent:
  437. - at:put:
  438. - current
  439. - vm
  440. - createPackage:properties:
  441. - MethodContext >>
  442. - temps
  443. - Object >>
  444. - try:catch:
  445. 0.13.2:
  446. + SourceArea class >>
  447. + codeMirror
  448. 0.13.1:
  449. * String >> asSelector is now String >> asJavaScriptMethodName
  450. * String >> asJavaScriptSelector is now String >> asJavaScriptPropertyName
  451. * smalltalk.selector is now smalltalk.st2js
  452. * smalltalk.convertSelector is now smalltalk.js2st
  453. * Collection >> ifEmpty:ifNotEmpty: family passes self to ifNotEmpty: block
  454. * Smalltalk vm is now Smalltalk core
  455. * boot.js's .vm is now .api
  456. * amber load sets' .vm is now .api
  457. * Internal variables smalltalk/globals/_st are now $core/$globals/$recv
  458. + smalltalk.
  459. + accessJavaScript
  460. + Object >>
  461. + postMessageTo:
  462. + postMessageTo:origin:
  463. + Class >>
  464. + heliosClass
  465. + SmalltalkImage >>
  466. + core
  467. + amber/boot exports
  468. + api
  469. + amber/{devel,deploy,lang} exports
  470. + api
  471. - ProtoObject class >>
  472. - heliosClass
  473. - Object class >>
  474. - heliosClass
  475. 0.12.6:
  476. + String >>
  477. + value:
  478. + ProtocolAnnouncement >>
  479. + package
  480. + Behavior >>
  481. + isTestClass
  482. + Package >>
  483. + isTestPackage
  484. + amber/{devel,deploy,lang} exports
  485. + nil
  486. + amber/helpers exports
  487. + nil
  488. 0.12.4:
  489. * Package Canvas renamed to Web
  490. * Object >> try:catch: deprecated in favour of BlockClosure >> tryCatch:
  491. + Announcer >>
  492. + on:do:for:
  493. + Node >>
  494. + navigationNodeAt:ifAbsent:
  495. + BlockClosure >>
  496. + tryCatch:
  497. + Environment >>
  498. + evaluate:for:
  499. + AmberCli >>
  500. + version:
  501. + Object >>
  502. + deprecatedAPI:
  503. - Environment >>
  504. - eval:on:
  505. - evaluateString:on:
  506. 0.12.3:
  507. * Package Import-Export renamed to Kernel-ImportExport
  508. * A dozen of methods moved from Object to ProtoObject
  509. * HashedCollection >> at:ifAbsentPut: pushed up to SequenceableCollection
  510. * HashedCollection >> , is now allowed (removed shouldNotImplement)
  511. * HashedCollection and Dictionary both subclasses of AssociativeCollection
  512. * Smalltalk class moved to SmalltalkImage class, Smalltalk is now global var
  513. * Smalltalk current deprecated in favour of Smalltalk
  514. * Smalltalk at:[put:] deprecated in favour of Smalltalk globals at:[put:]
  515. * <smalltalk.ClassName> deprecated in favour of <globals.ClassName>
  516. + CompiledMethod >>
  517. + defaultProtocol
  518. + Behavior >>
  519. + compile:protocol:
  520. + removeProtocolIfEmpty:
  521. + Package >>
  522. + load
  523. + loadFromNamespace:
  524. + Package class >>
  525. + load:
  526. + load:fromNamespace:
  527. + PackageTransport >> load
  528. + PackageHandler >> load:
  529. + AmdPackageHandler >> load:
  530. + Set >> removeAll
  531. + AssociativeCollection class
  532. + BucketStore class
  533. + SmalltalkImage >>
  534. + globals
  535. + vm
  536. + settings
  537. + Setting class
  538. + String >>
  539. + asSetting
  540. + asSettingIfAbsent:
  541. + settingValue
  542. + settingValueIfAbsent:
  543. + settingValue:
  544. + Smalltalk global variable
  545. - CompiledMethod >>
  546. - category: (use #protocol:)
  547. - defaultCategory
  548. - Behavior >> compile:category:
  549. - HTMLCanvas class >>
  550. - browserVersion
  551. - isMSIE
  552. - isMozilla
  553. - isOpera
  554. - isWebkit
  555. 0.12.2:
  556. * Collection >> contains: is deprecated in favor of anySatisfy:
  557. + Announcer >> on:doOnce:
  558. + String >>
  559. + uriEncoded
  560. + uriDecoded
  561. + uriComponentEncoded
  562. + uriComponentDecoded
  563. + Collection >>
  564. + removeAll
  565. + ifEmpty:ifNotEmpty:
  566. + ifNotEmpty:ifEmpty:
  567. + anyOne
  568. + noneSatisfy:
  569. + anySatisfy:
  570. + allSatisfy:
  571. 0.12.0:
  572. * SmalltalkMethodContext.prototype.fillBlock() takes a third 'index' parameter
  573. * Existing classes moved to new KernelInfrastructure package
  574. * ImporterExporter
  575. * are now StreamExporters
  576. * aware of AMD namespaces
  577. * support transport types and commit channels
  578. + Node >>
  579. + nextChild
  580. + method
  581. + postCopy
  582. + isCascadeNode
  583. + isLastChild
  584. + BlockNode >>
  585. + nextNode:
  586. + nextChild
  587. + SendNode >>
  588. + isCascadeSendNode
  589. + shouldBeAliased
  590. + CompiledMethod >> sendTo:arguments:
  591. + Array >>
  592. + addFirst:
  593. + removeLast
  594. + Number >>
  595. + ceiling
  596. + floor
  597. + asNumber
  598. + //
  599. + cos
  600. + sin
  601. + tan
  602. + arcCos
  603. + arcSin
  604. + arcTan
  605. + log
  606. + log:
  607. + raisedTo:
  608. + sign
  609. + **
  610. + ln
  611. + e
  612. + String class >> esc
  613. + String >>
  614. + asMutator
  615. + capitalized
  616. + isCapitalized
  617. + JSProxy >> printString
  618. + Behavior >>
  619. + ownProtocols
  620. + ownMethods
  621. + JSStream >> nextPutSendIndexFor:
  622. + InterfacingObject class
  623. + Interpreter class
  624. + DocumentFragmentTag class
  625. + AbstractExporter class
  626. + PlatformInterface class
  627. - Node >> extent
  628. - JSStream >> nextPutStatement:with:
  629. - Smalltalk.installSuperclass()
  630. - ClassReferenceNode class (now handled via VariableNode)
  631. 0.11.0:
  632. * AnnouncementSubscription use #valuable: instead of #block: (deprecated)
  633. * AbstractCodeGenerator inherits from Object, not NodeVisitor
  634. * Object>>printString
  635. * replace >>printString with >>printOn:
  636. * replace >>storeString with >>printString
  637. * PackageLoader is now PackageHandler (>>commit: >>setupPackagenamed:prefix: >>ajaxPutAt:data:
  638. * Package>>fetch: is now Package>>load:
  639. * Package>>fetch:prefix: is now Package>>load:prefix:
  640. * Queue>>front replaced by Queue>>next
  641. * Queue>>frontIfAbsent: replaced by Queue>>nextIfAbsent:
  642. * Queue>>back: replaced by Queue>>nextPut:
  643. * smalltalk.addMethod() does not use explicit JS selector
  644. * JSObjectProxy>>canForwardMessage: replaced by use of JSObjectProxy>>lookupProperty: with asJavaScriptSelector
  645. * JSObjectProxy>>forwardMessage: replaced by explicit JSObjectProxy>>forwardMessage:withArguments:
  646. * String>>asJavaScriptSelector moved to Kernel-Objects package
  647. + Object>>asString
  648. + Object>>putOn:
  649. + String>>isVowel
  650. + Collection>>putOn:
  651. + CharacterArray>>putOn:
  652. + Stream>><<
  653. + Stream>>write
  654. + SequenceableCollection>>newStream
  655. + SequenceableCollection>>readStream
  656. + SequenceableCollection>>stream
  657. + SequenceableCollection>>streamClass
  658. + SequenceableCollection>>writeStream
  659. + Collection>>isImmutable
  660. + Stream>>nextPutString:
  661. + StringStream>>nextPutString:
  662. + JSStream>>nextPutClassRefFunction:
  663. + String>>crlfSanitized
  664. + inlined Block now also responds to >>value:
  665. + Parser: split literal into runtimeLiteral and parseTimeLiteral
  666. + Parser: write #(4 #(5 6 #()) 7) as #(4 (5 6 ()) 7)
  667. + Parser: write #(#on:do: #Object) as #(on:do: Object)
  668. + Parser: Symbols for binarie selectores
  669. + Package>>commit
  670. + AIContext>>initializeLocals
  671. + ASTInterpreter>>withBlockContext:
  672. + smalltalk.allSelectors()
  673. + Object>>isCompiledMethod
  674. + Object>>isPackage
  675. + Object>>isBehavior
  676. + ClassMoved Announcemen class
  677. + Behavior>>includesBehavior:
  678. + Environment>>classes
  679. + Environment>>allSelectors
  680. + Environment>>removeProtocol:
  681. + Environment>>renameProtocol:to:in:
  682. + CompiledMethod>>protocol:
  683. + Smalltalk>>globalJsVariables
  684. + Smalltalk>>addGlobalJsVariable:
  685. + Smalltalk>>deleteGlobalJsVariable:
  686. - Object>>storeOn:
  687. - Object>>log:block:
  688. - Object>>printNl
  689. - Compiler-IR.st >>javascriptSelector
  690. - Compiler-IR.st >>nextPutVar:
  691. - Kernel-Collections.st >>asSuperSelector
  692. - Collection>>readStream
  693. - Collection>>stream
  694. - Collection>>streamClass
  695. - Collection>>writeStream
  696. - Symbol class (replaced with String)
  697. - IRInlinedNonLocalReturn class
  698. - IRInlinedSend>>nonLocalReturnInliner
  699. - IRNonLocalReturnInliner class
  700. - Package>>dependencies
  701. - Package>>dependencies:
  702. - Package>>properties
  703. - Package>>jsProperties
  704. - Package>>jsProperties:
  705. - Package>>propertiesAsJSON
  706. - Package>>propertyAt:
  707. - Package>>propertyAt:ifAbsent:
  708. - Package>>propertyAt:put:
  709. - Browser>>ajaxPutAt:data: